1 17 18 19 20 package org.apache.fop.area; 21 22 28 public abstract class AbstractOffDocumentItem implements OffDocumentItem { 29 30 34 public static final int IMMEDIATELY = 0; 35 36 40 public static final int AFTER_PAGE = 1; 41 42 46 public static final int END_OF_DOC = 2; 47 48 52 public static final int START_OF_DOC = 2; 53 54 55 56 protected int whenToProcess = IMMEDIATELY; 57 58 62 public int getWhenToProcess() { 63 return whenToProcess; 64 } 65 66 70 public abstract String getName(); 71 } 72 | Popular Tags |