1 16 17 package org.apache.xerces.xni.parser; 18 19 31 public interface XMLComponent { 32 33 37 46 public void reset(XMLComponentManager componentManager) 47 throws XMLConfigurationException; 48 49 54 public String [] getRecognizedFeatures(); 55 56 72 public void setFeature(String featureId, boolean state) 73 throws XMLConfigurationException; 74 75 80 public String [] getRecognizedProperties(); 81 82 98 public void setProperty(String propertyId, Object value) 99 throws XMLConfigurationException; 100 101 110 public Boolean getFeatureDefault(String featureId); 111 112 121 public Object getPropertyDefault(String propertyId); 122 123 } | Popular Tags |