Skip to content

Commit

Permalink
Add Kids to PBoxPDFormField
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximPlusov committed Apr 9, 2024
1 parent 69901c5 commit 2b28fc3
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ public class PBoxPDFormField extends PBoxPDObject implements PDFormField {

public static final String LANG = "Lang";

public static final String KIDS = "Kids";

public PBoxPDFormField(PDField simplePDObject) {
super(simplePDObject, FORM_FIELD_TYPE);
}
Expand Down Expand Up @@ -82,6 +84,8 @@ public List<? extends Object> getLinkedObjects(String link) {
return this.getAdditionalAction();
case LANG:
return Collections.emptyList();
case KIDS:
return Collections.emptyList();
default:
return super.getLinkedObjects(link);
}
Expand Down

0 comments on commit 2b28fc3

Please sign in to comment.