unico 2003/11/21 03:39:46
Modified: src/blocks/repository/java/org/apache/cocoon/components/source/impl
AbstractConfigurableSourceInspector.java
Log:
add handlesProperty method
Revision Changes Path
1.5 +1 -1 cocoon-2.1/src/blocks/repository/java/org/apache/cocoon/components/source/impl/AbstractConfigurableSourceInspector.java
Index: AbstractConfigurableSourceInspector.java
===================================================================
RCS file: /home/cvs/cocoon-2.1/src/blocks/repository/java/org/apache/cocoon/components/source/impl/AbstractConfigurableSourceInspector.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- AbstractConfigurableSourceInspector.java 19 Nov 2003 14:39:12 -0000 1.4
+++ AbstractConfigurableSourceInspector.java 21 Nov 2003 11:39:46 -0000 1.5
@@ -167,7 +167,7 @@
* Check if this inspector is configured to handle properties of
* the given type.
*/
- protected final boolean handlesProperty(String namespace, String name) {
+ public final boolean handlesProperty(String namespace, String name) {
return m_properties.contains(namespace + "#" + name);
}
|