20 lines
371 B
Java
20 lines
371 B
Java
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;
|
|
}
|
|
}
|