1 28 29 package com.caucho.jsp.cfg; 30 31 34 public class TldFragmentInput { 35 private String _name; 36 private Class _type; 37 private String _description; 38 39 42 public void setName(String name) 43 { 44 _name = name; 45 } 46 47 50 public String getName() 51 { 52 return _name; 53 } 54 55 58 public void setType(Class type) 59 { 60 _type = type; 61 } 62 63 66 public Class getType() 67 { 68 return _type; 69 } 70 71 74 public void setDescription(String description) 75 { 76 _description = description; 77 } 78 79 82 public String getDescription() 83 { 84 return _description; 85 } 86 } 87 | Popular Tags |