1 23 24 package org.apache.slide.common; 25 26 import org.apache.slide.content.NodeProperty; 27 import java.util.Iterator ; 28 29 30 35 public interface RequestedProperties { 36 37 45 boolean contains (String name, String namespace); 46 47 55 boolean contains (NodeProperty property); 56 57 63 boolean isAllProp (); 64 65 68 void setIsAllProp(boolean isAllProp); 69 70 76 Iterator getRequestedProperties (); 77 } 78 79 | Popular Tags |