Skip to content

Commit

Permalink
PDF/UA-2. Add new annotations methods
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximPlusov committed Oct 31, 2023
1 parent b5b7df3 commit 3549396
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,11 @@ public String getstructParentStandardType() {
return null;
}

@Override
public String getstructParentObjectKey() {
return null;
}

private List<CosLang> getLang() {
PDStructureTreeRoot structTreeRoot = this.document.getDocumentCatalog().getStructureTreeRoot();
int structParent = ((PDAnnotation) this.simplePDObject).getStructParent();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,4 +130,9 @@ public String getentries() {
}
return "";
}

@Override
public String getobjectKey() {
return null;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,14 @@ public List<? extends Object> getLinkedObjects(String link) {
return super.getLinkedObjects(link);
}
}

@Override
public String getdifferentTargetAnnotObjectKey() {
return null;
}

@Override
public String getsameTargetAnnotObjectKey() {
return null;
}
}

0 comments on commit 3549396

Please sign in to comment.