1 17 18 19 20 package org.apache.fop.fo.flow; 21 22 import org.apache.fop.fo.FONode; 23 24 31 public class PageNumberCitationLast extends PageNumberCitation { 32 33 37 public PageNumberCitationLast(FONode parent) { 38 super(parent); 39 } 40 41 42 public String getLocalName() { 43 return "page-number-citation-last"; 44 } 45 46 47 public int getNameId() { 48 return FO_PAGE_NUMBER_CITATION_LAST; 49 } 50 } 51 | Popular Tags |