/* * Copyright 2012 PRODYNA AG * * Licensed under the Eclipse Public License (EPL), Version 1.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.opensource.org/licenses/eclipse-1.0.php or * http://www.nabucco.org/License.html * * 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.nabucco.testautomation.facade.datatype.property; import java.util.HashMap; import java.util.List; import java.util.Map; import org.nabucco.framework.base.facade.datatype.Datatype; import org.nabucco.framework.base.facade.datatype.property.NabuccoProperty; import org.nabucco.framework.base.facade.datatype.property.NabuccoPropertyContainer; import org.nabucco.framework.base.facade.datatype.property.NabuccoPropertyDescriptor; import org.nabucco.framework.base.facade.datatype.property.PropertyCache; import org.nabucco.framework.base.facade.datatype.property.PropertyDescriptorSupport; import org.nabucco.testautomation.facade.datatype.base.DoubleValue; import org.nabucco.testautomation.facade.datatype.property.base.PropertyComponent; import org.nabucco.testautomation.facade.datatype.property.base.PropertyType; /** * DoubleProperty<p/>Property containing a Double as value<p/> * * @version 1.0 * @author Steffen Schmidt, PRODYNA AG, 2010-04-01 */ public class DoubleProperty extends PropertyComponent implements Datatype { private static final long serialVersionUID = 1L; private static final String[] PROPERTY_CONSTRAINTS = { "l0,n;m0,1;" }; public static final String VALUE = "value"; private DoubleValue value; /** Constructs a new DoubleProperty instance. */ public DoubleProperty() { super(); this.initDefaults(); } /** InitDefaults. */ private void initDefaults() { type = PropertyType.DOUBLE; } /** * CloneObject. * * @param clone the DoubleProperty. */ protected void cloneObject(DoubleProperty clone) { super.cloneObject(clone); if ((this.getValue() != null)) { clone.setValue(this.getValue().cloneObject()); } clone.setType(this.getType()); } /** * CreatePropertyContainer. * * @return the NabuccoPropertyContainer. */ protected static NabuccoPropertyContainer createPropertyContainer() { Map<String, NabuccoPropertyDescriptor> propertyMap = new HashMap<String, NabuccoPropertyDescriptor>(); propertyMap.putAll(PropertyCache.getInstance().retrieve(PropertyComponent.class) .getPropertyMap()); propertyMap.put(VALUE, PropertyDescriptorSupport.createBasetype(VALUE, DoubleValue.class, 8, PROPERTY_CONSTRAINTS[0], false)); return new NabuccoPropertyContainer(propertyMap); } @Override public void init() { this.initDefaults(); } @Override public List<NabuccoProperty> getProperties() { List<NabuccoProperty> properties = super.getProperties(); properties.add(super.createProperty(DoubleProperty.getPropertyDescriptor(VALUE), this.value, null)); return properties; } @Override public boolean setProperty(NabuccoProperty property) { if (super.setProperty(property)) { return true; } if ((property.getName().equals(VALUE) && (property.getType() == DoubleValue.class))) { this.setValue(((DoubleValue) property.getInstance())); return true; } return false; } @Override public boolean equals(Object obj) { if ((this == obj)) { return true; } if ((obj == null)) { return false; } if ((this.getClass() != obj.getClass())) { return false; } if ((!super.equals(obj))) { return false; } final DoubleProperty other = ((DoubleProperty) obj); if ((this.value == null)) { if ((other.value != null)) return false; } else if ((!this.value.equals(other.value))) return false; return true; } @Override public int hashCode() { final int PRIME = 31; int result = super.hashCode(); result = ((PRIME * result) + ((this.value == null) ? 0 : this.value.hashCode())); return result; } @Override public DoubleProperty cloneObject() { DoubleProperty clone = new DoubleProperty(); this.cloneObject(clone); return clone; } /** * Missing description at method getValue. * * @return the DoubleValue. */ public DoubleValue getValue() { return this.value; } /** * Missing description at method setValue. * * @param value the DoubleValue. */ public void setValue(DoubleValue value) { this.value = value; } /** * Missing description at method setValue. * * @param value the Double. */ public void setValue(Double value) { if ((this.value == null)) { if ((value == null)) { return; } this.value = new DoubleValue(); } this.value.setValue(value); } /** * Getter for the PropertyDescriptor. * * @param propertyName the String. * @return the NabuccoPropertyDescriptor. */ public static NabuccoPropertyDescriptor getPropertyDescriptor(String propertyName) { return PropertyCache.getInstance().retrieve(DoubleProperty.class).getProperty(propertyName); } /** * Getter for the PropertyDescriptorList. * * @return the List<NabuccoPropertyDescriptor>. */ public static List<NabuccoPropertyDescriptor> getPropertyDescriptorList() { return PropertyCache.getInstance().retrieve(DoubleProperty.class).getAllProperties(); } }