1 19 20 package org.netbeans.modules.form; 21 22 import java.beans.IntrospectionException ; 23 import java.lang.reflect.InvocationTargetException ; 24 25 30 public class FakeRADProperty extends RADProperty { 31 32 33 public FakeRADProperty(RADComponent comp, FakePropertyDescriptor desc) throws IntrospectionException { 34 super(comp, desc); 35 setAccessType(NORMAL_RW); 36 } 37 38 public Object getTargetValue() throws IllegalAccessException , 39 InvocationTargetException { 40 return null; } 42 43 public void setTargetValue(Object value) throws IllegalAccessException , 44 IllegalArgumentException , 45 InvocationTargetException { 46 47 } 49 50 } 51 | Popular Tags |