Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 28 package net.sf.jasperreports.engine; 29 30 import java.io.Serializable ; 31 32 33 39 public class JRPrintHyperlinkParameter implements Serializable  40 { 41 private static final long serialVersionUID = JRConstants.SERIAL_VERSION_UID; 42 43 public static final String DEFAULT_VALUE_CLASS = java.lang.String .class.getName(); 44 45 private String name; 46 private String valueClass = DEFAULT_VALUE_CLASS; 47 private Object value; 48 49 50 53 public JRPrintHyperlinkParameter() 54 { 55 } 56 57 58 65 public JRPrintHyperlinkParameter(final String name, final String valueClass, final Object value) 66 { 67 this.name = name; 68 this.valueClass = valueClass; 69 this.value = value; 70 } 71 72 73 79 public String getName() 80 { 81 return name; 82 } 83 84 85 91 public String getValueClass() 92 { 93 return valueClass; 94 } 95 96 97 103 public Object getValue() 104 { 105 return value; 106 } 107 108 109 114 public void setName(final String name) 115 { 116 this.name = name; 117 } 118 119 120 125 public void setValueClass(final String valueClass) 126 { 127 this.valueClass = valueClass; 128 } 129 130 131 136 public void setValue(final Object value) 137 { 138 this.value = value; 139 } 140 141 } 142
| Popular Tags
|