1 16 17 package org.apache.cocoon.components.elementprocessor.impl.poi.hssf.elements; 18 19 import org.apache.cocoon.components.elementprocessor.types.NumericResult; 20 21 import java.io.IOException ; 22 23 34 public class EP_Order extends BaseElementProcessor { 35 private NumericResult _print_order; 36 37 40 public EP_Order() { 41 super(null); 42 _print_order = null; 43 } 44 45 50 51 int getPrintOrder() throws IOException { 52 if (_print_order == null) { 53 _print_order = PrintOrder.extractPrintOrder(getData()); 54 } 55 return _print_order.intValue(); 56 } 57 } | Popular Tags |