1 18 package org.apache.activemq.filter; 19 20 import java.util.Collection ; 21 import java.util.Set ; 22 23 28 public interface DestinationNode { 29 void appendMatchingValues(Set answer, String [] paths, int startIndex); 30 31 void appendMatchingWildcards(Set answer, String [] paths, int startIndex); 32 33 void appendDescendantValues(Set answer); 34 35 Collection getDesendentValues(); 36 37 DestinationNode getChild(String path); 38 39 Collection getValues(); 40 41 Collection getChildren(); 42 43 Collection removeDesendentValues(); 44 45 Collection removeValues(); 46 } 47 | Popular Tags |