1 19 20 package org.apache.tools.ant.module.bridge; 21 22 import java.util.Enumeration ; 23 24 29 public interface IntrospectionHelperProxy { 30 31 boolean supportsCharacters(); 32 33 Enumeration <String > getAttributes(); 34 35 Class getAttributeType(String name); 36 37 Enumeration <String > getNestedElements(); 38 39 Class getElementType(String name); 40 41 } 42 | Popular Tags |