Skip to content

Commit

Permalink
PDF/UA-2. Add new methods
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximPlusov committed Sep 18, 2023
1 parent b057b0c commit a479234
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,11 @@ public Boolean getcontainsEF() {
((COSDictionary) this.baseObject).containsKey(COSName.EF);
}

@Override
public Boolean getcontainsDesc() {
return null;
}

@Override
public List<? extends Object> getLinkedObjects(String link) {
if (EF.equals(link)) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,9 @@ public String getroleAttribute() {
public Boolean gethasOneInteractiveChild() {
return false;
}

@Override
public Long getwidgetAnnotsCount() {
return null;
}
}

0 comments on commit a479234

Please sign in to comment.