KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > cocoon > components > elementprocessor > impl > poi > hssf > elements > EP_Right


1 /*
2  * Copyright 1999-2004 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16
17 package org.apache.cocoon.components.elementprocessor.impl.poi.hssf.elements;
18
19 import org.apache.cocoon.components.elementprocessor.types.NumericConverter;
20 import org.apache.cocoon.components.elementprocessor.types.NumericResult;
21
22 import java.io.IOException JavaDoc;
23
24 /**
25  * No-op implementation of ElementProcessor to handle the "right" tag
26  *
27  * This element has two attributes: Points and PrefUnit
28  *
29  * @author Marc Johnson (marc_johnson27591@hotmail.com)
30  * @version CVS $Id: EP_Right.java 37191 2004-08-30 10:15:06Z antonio $
31  */

32 public class EP_Right extends BaseElementProcessor {
33     private static final String JavaDoc _points_attribute = "Points";
34     private static final String JavaDoc _pref_unit_attribute = "PrefUnit";
35     private NumericResult _points;
36     private NumericResult _pref_unit;
37
38     /**
39      * constructor
40      */

41     public EP_Right() {
42         super(null);
43         _points = null;
44         _pref_unit = null;
45     }
46
47     /**
48      * @return points
49      *
50      * @exception IOException
51      */

52
53     double getPoints() throws IOException JavaDoc {
54         if (_points == null) {
55             _points = NumericConverter.extractDouble(getValue(_points_attribute));
56         }
57         return _points.doubleValue();
58     }
59
60     /**
61      * @return print unit (always one of the values in PrintUnits)
62      *
63      * @exception IOException
64      */

65
66     int getPrefUnit() throws IOException JavaDoc {
67         if (_pref_unit == null) {
68             _pref_unit = PrintUnits.extractPrintUnits(getValue(_pref_unit_attribute));
69         }
70         return _pref_unit.intValue();
71     }
72     
73     /**
74      * Setup the right margin
75      * @exception IOException
76      */

77     public void endProcessing() throws IOException JavaDoc{
78         this.getSheet().setRightMargin(getPoints());
79     }
80 } // end public class EP_Right
81
Popular Tags