*/
protected int nextPid() {
int propid = 1;
- for(CTProperty p : props.getProperties().getPropertyArray()){
+ for(CTProperty p : props.getProperties().getPropertyList()) {
if(p.getPid() > propid) propid = p.getPid();
}
return propid + 1;
* @return whether a property with the given name exists in the custom properties
*/
public boolean contains(String name) {
- for(CTProperty p : props.getProperties().getPropertyArray()){
+ for(CTProperty p : props.getProperties().getPropertyList()) {
if(p.getName().equals(name)) return true;
}
return false;
* @return the custom property with this name, or null if none exists
*/
public CTProperty getProperty(String name) {
- for(CTProperty p : props.getProperties().getPropertyArray()){
+ for(CTProperty p : props.getProperties().getPropertyList()) {
if(p.getName().equals(name)) {
return p;
}
text.append(thing);
text.append(" = ");
text.append(value);
- text.append("\n");
+ text.append('\n');
}
/**
org.openxmlformats.schemas.officeDocument.x2006.customProperties.CTProperties
props = document.getProperties().getCustomProperties().getUnderlyingProperties();
- for (CTProperty property : props.getPropertyArray()) {
+ for (CTProperty property : props.getPropertyList()) {
String val = "(not implemented!)";
if (property.isSetLpwstr()) {