1 28 package org.jvyamlb; 29 30 import java.util.List ; 31 32 import org.jvyamlb.nodes.Node; 33 34 import org.jruby.util.ByteList; 35 36 39 public interface Resolver { 40 void descendResolver(final Node currentNode, final Object currentIndex); 41 void ascendResolver(); 42 boolean checkResolverPrefix(final int depth, final List path, final Class kind, final Node currentNode, final Object currentIndex); 43 String resolve(final Class kind, final ByteList value, final boolean[] implicit); 44 } | Popular Tags |