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 Oct 10, 2023
1 parent a479234 commit eb22fa0
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,11 @@ public String getTU() {
return null;
}

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

@Override
public List<? extends Object> getLinkedObjects(String link) {
switch (link) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,9 @@ public class PBoxSEFENote extends PBoxSEGeneral implements SEFENote {
public PBoxSEFENote(COSDictionary structElemDictionary, TaggedPDFRoleMapHelper roleMapHelper) {
super(structElemDictionary, roleMapHelper, TaggedPDFConstants.FENOTE, FENOTE_STRUCTURE_ELEMENT_TYPE);
}

@Override
public String getNoteType() {
return null;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,9 @@ public class PBoxSEFormula extends PBoxSEGeneral implements SEFormula {
public PBoxSEFormula(COSDictionary structElemDictionary, TaggedPDFRoleMapHelper roleMapHelper) {
super(structElemDictionary, roleMapHelper, TaggedPDFConstants.FORMULA, FORMULA_STRUCTURE_ELEMENT_TYPE);
}

@Override
public Boolean getisMathFormula() {
return null;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,14 @@ public class PBoxSEL extends PBoxSEGeneral implements SEL {
public PBoxSEL(COSDictionary structElemDictionary, TaggedPDFRoleMapHelper roleMapHelper) {
super(structElemDictionary, roleMapHelper, TaggedPDFConstants.L, L_STRUCTURE_ELEMENT_TYPE);
}

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

@Override
public Boolean getcontainsLabels() {
return null;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,9 @@ public class PBoxSETOCI extends PBoxSEGeneral implements SETOCI {
public PBoxSETOCI(COSDictionary structElemDictionary, TaggedPDFRoleMapHelper roleMapHelper) {
super(structElemDictionary, roleMapHelper, TaggedPDFConstants.TOCI, TOCI_STRUCTURE_ELEMENT_TYPE);
}

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

0 comments on commit eb22fa0

Please sign in to comment.