Method from org.apache.pdfbox.pdmodel.documentinterchange.logicalstructure.PDMarkedContentReference Detail: |
protected COSDictionary getCOSDictionary() {
return this.dictionary;
}
|
public COSBase getCOSObject() {
return this.dictionary;
}
|
public int getMCID() {
return this.getCOSDictionary().getInt(COSName.MCID);
}
Gets the marked content identifier. |
public PDPage getPage() {
COSDictionary pg = (COSDictionary) this.getCOSDictionary()
.getDictionaryObject(COSName.PG);
if (pg != null)
{
return new PDPage(pg);
}
return null;
}
|
public void setMCID(int mcid) {
this.getCOSDictionary().setInt(COSName.MCID, mcid);
}
Sets the marked content identifier. |
public void setPage(PDPage page) {
this.getCOSDictionary().setItem(COSName.PG, page);
}
|
public String toString() {
return new StringBuilder()
.append("mcid=").append(this.getMCID()).toString();
}
|