1 18 19 package org.apache.strutsel.taglib.bean; 20 21 import java.beans.PropertyDescriptor ; 22 import java.beans.IntrospectionException ; 23 import java.util.ArrayList ; 24 import java.beans.SimpleBeanInfo ; 25 26 32 public class ELStrutsTagBeanInfo extends SimpleBeanInfo 33 { 34 public PropertyDescriptor [] getPropertyDescriptors() 35 { 36 ArrayList proplist = new ArrayList (); 37 38 try { 39 proplist.add(new PropertyDescriptor ("id", ELStrutsTag.class, 40 null, "setIdExpr")); 41 } catch (IntrospectionException ex) {} 42 try { 43 proplist.add(new PropertyDescriptor ("formBean", ELStrutsTag.class, 44 null, "setFormBeanExpr")); 45 } catch (IntrospectionException ex) {} 46 try { 47 proplist.add(new PropertyDescriptor ("forward", ELStrutsTag.class, 48 null, "setForwardExpr")); 49 } catch (IntrospectionException ex) {} 50 try { 51 proplist.add(new PropertyDescriptor ("mapping", ELStrutsTag.class, 52 null, "setMappingExpr")); 53 } catch (IntrospectionException ex) {} 54 55 PropertyDescriptor [] result = 56 new PropertyDescriptor [proplist.size()]; 57 return ((PropertyDescriptor []) proplist.toArray(result)); 58 } 59 } 60 | Popular Tags |