use of org.apache.xmpbox.type.BooleanType in project pdfbox by apache.
the class XMPRightsManagementSchema method setMarked.
/**
* Set Marked value
*
* @param marked
* value to add
*/
public void setMarked(Boolean marked) {
BooleanType tt = (BooleanType) instanciateSimple(MARKED, marked ? BooleanType.TRUE : BooleanType.FALSE);
setMarkedProperty(tt);
}
Aggregations