@ -19,6 +19,7 @@ public class ITContent implements Cloneable {
private String sheetID ;
private String sheetID ;
private String sheetName ;
private String sheetName ;
private String templateName ;
private String templateName ;
private String templatePath ;
private String blockName ;
private String blockName ;
/ * *
/ * *
* 一些不好定位的位置先用字符串展示出来就好
* 一些不好定位的位置先用字符串展示出来就好
@ -90,6 +91,7 @@ public class ITContent implements Cloneable {
this . trlString = StringUtils . EMPTY ;
this . trlString = StringUtils . EMPTY ;
this . operatorArray = new ArrayList < > ( ) ;
this . operatorArray = new ArrayList < > ( ) ;
this . holdObject = new Object ( ) ;
this . holdObject = new Object ( ) ;
this . templatePath = StringUtils . EMPTY ;
}
}
@ -117,6 +119,7 @@ public class ITContent implements Cloneable {
result . setJumpAble ( content . isJumpAble ( ) ) ;
result . setJumpAble ( content . isJumpAble ( ) ) ;
result . setHoldObject ( content . getHoldObject ( ) ) ;
result . setHoldObject ( content . getHoldObject ( ) ) ;
result . setTag ( content . getTag ( ) ) ;
result . setTag ( content . getTag ( ) ) ;
result . setTemplatePath ( content . getTemplatePath ( ) ) ;
}
}
return result ;
return result ;
}
}
@ -205,6 +208,14 @@ public class ITContent implements Cloneable {
this . showObject = showObject ;
this . showObject = showObject ;
}
}
public String getTemplatePath ( ) {
return templatePath ;
}
public void setTemplatePath ( String templatePath ) {
this . templatePath = templatePath ;
}
/ * *
/ * *
* 添加位置信息
* 添加位置信息
*
*