GitHub PR 27: Add method to check for any protection in XWPFDocument, closes #27
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1730471 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
98da5af350
commit
677b19afbd
@ -919,6 +919,22 @@ public class XWPFDocument extends POIXMLDocument implements Document, IBody {
|
|||||||
tables.set(pos, table);
|
tables.set(pos, table);
|
||||||
ctDocument.getBody().setTblArray(pos, table.getCTTbl());
|
ctDocument.getBody().setTblArray(pos, table.getCTTbl());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Verifies that the documentProtection tag in settings.xml file <br/>
|
||||||
|
* specifies that the protection is enforced (w:enforcement="1") <br/>
|
||||||
|
* <br/>
|
||||||
|
* sample snippet from settings.xml
|
||||||
|
* <pre>
|
||||||
|
* <w:settings ... >
|
||||||
|
* <w:documentProtection w:edit="readOnly" w:enforcement="1"/>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
* @return true if documentProtection is enforced with option any
|
||||||
|
*/
|
||||||
|
public boolean isEnforcedProtection() {
|
||||||
|
return settings.isEnforcedWith();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Verifies that the documentProtection tag in settings.xml file <br/>
|
* Verifies that the documentProtection tag in settings.xml file <br/>
|
||||||
|
@ -120,6 +120,29 @@ public class XWPFSettings extends POIXMLDocumentPart {
|
|||||||
CTZoom zoom = ctSettings.getZoom();
|
CTZoom zoom = ctSettings.getZoom();
|
||||||
zoom.setPercent(BigInteger.valueOf(zoomPercent));
|
zoom.setPercent(BigInteger.valueOf(zoomPercent));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Verifies the documentProtection tag inside settings.xml file <br/>
|
||||||
|
* if the protection is enforced (w:enforcement="1") <br/>
|
||||||
|
* <p/>
|
||||||
|
* <br/>
|
||||||
|
* sample snippet from settings.xml
|
||||||
|
* <pre>
|
||||||
|
* <w:settings ... >
|
||||||
|
* <w:documentProtection w:edit="readOnly" w:enforcement="1"/>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
* @return true if documentProtection is enforced with option any
|
||||||
|
*/
|
||||||
|
public boolean isEnforcedWith() {
|
||||||
|
CTDocProtect ctDocProtect = ctSettings.getDocumentProtection();
|
||||||
|
|
||||||
|
if (ctDocProtect == null) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return ctDocProtect.getEnforcement().equals(STOnOff.X_1);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Verifies the documentProtection tag inside settings.xml file <br/>
|
* Verifies the documentProtection tag inside settings.xml file <br/>
|
||||||
|
@ -416,4 +416,11 @@ public final class TestXWPFDocument {
|
|||||||
|
|
||||||
doc.close();
|
doc.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testEnforcedWith() throws IOException {
|
||||||
|
XWPFDocument docx = XWPFTestDataSamples.openSampleDocument("EnforcedWith.docx");
|
||||||
|
assertTrue(docx.isEnforcedProtection());
|
||||||
|
docx.close();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
BIN
test-data/document/EnforcedWith.docx
Normal file
BIN
test-data/document/EnforcedWith.docx
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user