1 22 23 package org.xquark.xml.xdbc; 24 25 32 public interface Configurable { 33 34 35 36 38 45 public void setFeature(String featureId, boolean state) throws XMLDBCNotRecognizedException, 46 XMLDBCNotSupportedException; 47 48 54 public boolean getFeature(String featureId) throws XMLDBCNotRecognizedException; 55 56 60 61 public String [] getFeatureList(); 62 63 70 public void setProperty(String propertyId, Object value) throws XMLDBCNotRecognizedException, 71 XMLDBCNotSupportedException; 72 73 79 public Object getProperty(String propertyId) throws XMLDBCNotRecognizedException; 80 81 85 86 public String [] getPropertyList(); 87 88 } 89 90 | Popular Tags |