blob: 7a7c4664c30ddf4d76ff73bbc03117fa9acce900 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.cocoon.components.elementprocessor.impl.poi.hssf.elements;
import org.apache.cocoon.components.elementprocessor.types.Attribute;
import org.apache.cocoon.components.elementprocessor.ElementProcessor;
import org.apache.cocoon.components.elementprocessor.types.NumericConverter;
import org.apache.cocoon.components.elementprocessor.types.NumericResult;
import java.io.IOException;
/**
* No-op implementation of ElementProcessor to handle the "Rows" tag
*
* This element has an attribute (DefaultSizePts) and is a container
* element
*
* @author Marc Johnson (marc_johnson27591@hotmail.com)
* @version CVS $Id$
*/
public class EPRows extends BaseElementProcessor {
private NumericResult _default_size_pts;
private static final String _default_size_pts_attribute = "DefaultSizePts";
// package scope so test code can see it
static final String DEFAULT_SIZE_PTS = "12.8";
/**
* constructor
*/
public EPRows() {
super(null);
_default_size_pts = null;
}
/**
* get the default size of rows, in points
* @return size in points
* @exception IOException if the attribute is missing or malformed
*/
public double getDefaultSizePts() throws IOException {
if (_default_size_pts == null) {
String value = getValue(_default_size_pts_attribute);
if (value == null || value.trim().length() == 0) {
value = DEFAULT_SIZE_PTS;
}
_default_size_pts = NumericConverter.extractDouble(value);
}
return _default_size_pts.doubleValue();
}
/**
* Override of Initialize() implementation
* @param attributes the array of Attribute instances; may be empty, will
* never be null
* @param parent the parent ElementProcessor; may be null
* @exception IOException if anything is wrong
*/
public void initialize(final Attribute[] attributes,
final ElementProcessor parent) throws IOException {
super.initialize(attributes, parent);
getSheet().setDefaultRowHeight(getDefaultSizePts());
}
} // end public class EPRows