first commit
This commit is contained in:
19
hrmsEjb/net/sf/jasperreports/engine/JRTemplateReference.java
Normal file
19
hrmsEjb/net/sf/jasperreports/engine/JRTemplateReference.java
Normal file
@@ -0,0 +1,19 @@
|
||||
package net.sf.jasperreports.engine;
|
||||
|
||||
public class JRTemplateReference {
|
||||
private String location;
|
||||
|
||||
public JRTemplateReference() {}
|
||||
|
||||
public JRTemplateReference(String location) {
|
||||
this.location = location;
|
||||
}
|
||||
|
||||
public String getLocation() {
|
||||
return this.location;
|
||||
}
|
||||
|
||||
public void setLocation(String location) {
|
||||
this.location = location;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user