Class VecNumericalValue

java.lang.Object
com.foursoft.harness.vec.v113.VecValueWithUnit
com.foursoft.harness.vec.v113.VecNumericalValue
All Implemented Interfaces:
Identifiable, ModifiableIdentifiable, Visitable, Serializable

public class VecNumericalValue extends VecValueWithUnit implements Serializable, Visitable

A quantity expressed with a numerical value and a unit.

Java class for NumericalValue complex type.

The following schema fragment specifies the expected content contained within this class.


 <complexType name="NumericalValue">
   <complexContent>
     <extension base="{http://www.prostep.org/ecad-if/2011/vec}ValueWithUnit">
       <sequence>
         <element name="ValueComponent" type="{http://www.w3.org/2001/XMLSchema}double"/>
         <element name="Tolerance" type="{http://www.prostep.org/ecad-if/2011/vec}Tolerance" minOccurs="0"/>
       </sequence>
     </extension>
   </complexContent>
 </complexType>
 
See Also:
  • Field Details

    • valueComponent

      protected double valueComponent

      Specifies the value of the numerical value.

    • tolerance

      protected VecTolerance tolerance
  • Constructor Details

    • VecNumericalValue

      public VecNumericalValue()
  • Method Details

    • getValueComponent

      public double getValueComponent()
      Gets the value of the valueComponent property.

      Specifies the value of the numerical value.

    • setValueComponent

      public void setValueComponent(double value)
      Sets the value of the valueComponent property.
      See Also:
    • getTolerance

      public VecTolerance getTolerance()
      Gets the value of the tolerance property.
      Returns:
      possible object is VecTolerance
    • setTolerance

      public void setTolerance(VecTolerance value)
      Sets the value of the tolerance property.
      Parameters:
      value - allowed object is VecTolerance
    • accept

      public <R, E extends Throwable> R accept(Visitor<R,E> aVisitor) throws E
      Specified by:
      accept in interface Visitable
      Throws:
      E extends Throwable