1 16 17 package org.apache.cocoon.components.elementprocessor.impl.poi.hssf.elements; 18 19 import org.apache.cocoon.components.elementprocessor.types.BooleanConverter; 20 import org.apache.cocoon.components.elementprocessor.types.BooleanResult; 21 22 import java.io.IOException ; 23 24 35 public class EP_RepeatLeft extends BaseElementProcessor { 36 private static final String _value_attribute = "value"; 37 private BooleanResult _value; 38 39 42 public EP_RepeatLeft() { 43 super(null); 44 _value = null; 45 } 46 47 52 public boolean getValue() throws IOException { 53 if (_value == null) { 54 _value = 55 BooleanConverter.extractBoolean(getValue(_value_attribute)); 56 } 57 return _value.booleanValue(); 58 } 59 } | Popular Tags |