/* * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package com.xpn.xwiki.objects.classes; import org.apache.ecs.xhtml.input; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.xpn.xwiki.XWikiContext; import com.xpn.xwiki.internal.xml.XMLAttributeValueFilter; import com.xpn.xwiki.objects.BaseCollection; import com.xpn.xwiki.objects.BaseProperty; import com.xpn.xwiki.objects.DoubleProperty; import com.xpn.xwiki.objects.FloatProperty; import com.xpn.xwiki.objects.IntegerProperty; import com.xpn.xwiki.objects.LongProperty; import com.xpn.xwiki.objects.meta.PropertyMetaClass; public class NumberClass extends PropertyClass { private static final String XCLASSNAME = "number"; /** Logging helper object. */ private static final Logger LOG = LoggerFactory.getLogger(NumberClass.class); public NumberClass(PropertyMetaClass wclass) { super(XCLASSNAME, "Number", wclass); setSize(30); setNumberType("long"); } public NumberClass() { this(null); } public int getSize() { return getIntValue("size"); } public void setSize(int size) { setIntValue("size", size); } public String getNumberType() { return getStringValue("numberType"); } public void setNumberType(String ntype) { setStringValue("numberType", ntype); } @Override public BaseProperty newProperty() { String ntype = getNumberType(); BaseProperty property; if (ntype.equals("integer")) { property = new IntegerProperty(); } else if (ntype.equals("float")) { property = new FloatProperty(); } else if (ntype.equals("double")) { property = new DoubleProperty(); } else { property = new LongProperty(); } property.setName(getName()); return property; } @Override public BaseProperty fromString(String value) { BaseProperty property = newProperty(); String ntype = getNumberType(); Number nvalue = null; try { if (ntype.equals("integer")) { if ((value != null) && (!value.equals(""))) { nvalue = Integer.valueOf(value); } } else if (ntype.equals("float")) { if ((value != null) && (!value.equals(""))) { nvalue = Float.valueOf(value); } } else if (ntype.equals("double")) { if ((value != null) && (!value.equals(""))) { nvalue = Double.valueOf(value); } } else { if ((value != null) && (!value.equals(""))) { nvalue = Long.valueOf(value); } } } catch (NumberFormatException e) { LOG.warn("Invalid number entered for property " + getName() + " of class " + getObject().getName() + ": " + value); // Returning null makes sure that the old value (if one exists) will not be discarded/replaced return null; } property.setValue(nvalue); return property; } @Override public void displayEdit(StringBuffer buffer, String name, String prefix, BaseCollection object, XWikiContext context) { input input = new input(); input.setAttributeFilter(new XMLAttributeValueFilter()); BaseProperty prop = (BaseProperty) object.safeget(name); if (prop != null) { input.setValue(prop.toText()); } input.setType("text"); input.setName(prefix + name); input.setID(prefix + name); input.setSize(getSize()); input.setDisabled(isDisabled()); buffer.append(input.toString()); } }