1 package org.oddjob.arooa; 2 3 import java.util.Enumeration ; 4 5 import org.oddjob.arooa.reflect.RegistryLookup; 6 7 9 public interface RuntimeConfiguration { 10 11 17 public Object getWrappedObject(); 18 19 25 public String getElementTag(); 26 27 33 public String getAttribute(String name); 34 35 41 public void addChild(RuntimeConfiguration child); 42 43 52 public void addText(char[] buf, int start, int count); 53 54 58 public Enumeration getChildren(); 59 60 79 80 public void configure(RegistryLookup registry, boolean nullAllowed) 81 throws ArooaException; 82 83 public void configure() 84 throws ArooaException; 85 } 86 | Popular Tags |