1 51 package org.apache.fop.fo.pagination; 52 53 import org.apache.fop.fo.*; 54 import org.apache.fop.apps.FOPException; 55 56 61 public abstract class PageMasterReference extends FObj 62 implements SubSequenceSpecifier { 63 64 protected String masterName; 65 66 public PageMasterReference(FObj parent, PropertyList propertyList, 67 String systemId, int line, int column) 68 throws FOPException { 69 super(parent, propertyList, systemId, line, column); 70 } 71 72 public String getMasterName() { 73 return masterName; 74 } 75 76 public abstract String getNextPageMasterName(boolean isOddPage, 77 boolean isFirstPage, 78 boolean isEmptyPage) 79 throws FOPException; 80 81 public abstract void reset(); 82 } 83 | Popular Tags |