1 16 17 18 package org.apache.commons.beanutils; 19 20 21 22 23 24 36 37 public interface DynaClass { 38 39 40 46 public String getName(); 47 48 49 58 public DynaProperty getDynaProperty(String name); 59 60 61 70 public DynaProperty[] getDynaProperties(); 71 72 73 83 public DynaBean newInstance() 84 throws IllegalAccessException , InstantiationException ; 85 86 87 } 88 | Popular Tags |