1 16 package org.directwebremoting.extend; 17 18 import java.util.Collection ; 19 import java.util.Map ; 20 21 25 public interface CreatorManager 26 { 27 32 boolean isDebug(); 33 34 39 void addCreatorType(String id, String className); 40 41 50 void addCreator(String scriptName, String typename, Map params) throws InstantiationException , IllegalAccessException , IllegalArgumentException ; 51 52 58 void addCreator(String scriptName, Creator creator) throws IllegalArgumentException ; 59 60 68 Collection getCreatorNames() throws SecurityException ; 69 70 76 Creator getCreator(String scriptName) throws SecurityException ; 77 78 82 void setCreators(Map creators); 83 } 84 | Popular Tags |