1 57 58 package com.sun.org.apache.xerces.internal.xni.parser; 59 60 72 public interface XMLComponent { 73 74 78 87 public void reset(XMLComponentManager componentManager) 88 throws XMLConfigurationException; 89 90 95 public String [] getRecognizedFeatures(); 96 97 113 public void setFeature(String featureId, boolean state) 114 throws XMLConfigurationException; 115 116 121 public String [] getRecognizedProperties(); 122 123 139 public void setProperty(String propertyId, Object value) 140 throws XMLConfigurationException; 141 142 151 public Boolean getFeatureDefault(String featureId); 152 153 162 public Object getPropertyDefault(String propertyId); 163 164 } | Popular Tags |