1 58 package org.apache.ecs.jsp; 59 60 61 66 public class tsx_setProperty extends jsp_element 67 { 68 69 73 public tsx_setProperty() 74 { 75 super("tsx:setProperty"); 76 } 77 78 79 84 public tsx_setProperty(String name, String property, String value) 85 { 86 this(); 87 setName(name); 88 setProperty(property); 89 setValue(value); 90 } 91 92 93 97 public tsx_setProperty setName(String name) 98 { 99 addAttribute("name", name); 100 return this; 101 } 102 103 107 public tsx_setProperty setProperty(String property) 108 { 109 addAttribute("property", property); 110 return this; 111 } 112 113 114 118 public tsx_setProperty setValue(String value) 119 { 120 addAttribute("value", value); 121 return this; 122 } 123 124 125 } 126 | Popular Tags |