1 5 package xdoclet.modules.jsf; 6 7 import xdoclet.*; 8 13 public class BeanTagsHandler extends XDocletTagSupport 14 { 15 16 private String name = null; 17 private String scope = "request"; 18 19 24 public String getName() 25 { 26 return name; 27 } 28 29 public String getScope() 30 { 31 return scope; 32 } 33 34 public void setName(String name) 35 { 36 this.name = name; 37 } 38 39 public void setScope(String scope) 40 { 41 this.scope = scope; 42 } 43 44 48 public String name() 49 { 50 return getName(); 51 } 52 53 57 public String scope() 58 { 59 return getScope(); 60 } 61 } 62 | Popular Tags |