Class VecTolerance

java.lang.Object
com.foursoft.harness.vec.v113.VecExtendableElement
com.foursoft.harness.vec.v113.VecTolerance
All Implemented Interfaces:
Identifiable, ModifiableIdentifiable, HasCustomProperties<VecCustomProperty>, Visitable, Serializable

public class VecTolerance extends VecExtendableElement implements Serializable, Visitable

Enables the specification of value ranges which can be tolerated.

Java class for Tolerance complex type.

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


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

    • lowerBoundary

      protected double lowerBoundary

      Specifies the lower boundary for the tolerance.

    • upperBoundary

      protected double upperBoundary

      Specifies the upper boundary for the tolerance.

  • Constructor Details

    • VecTolerance

      public VecTolerance()
  • Method Details

    • getLowerBoundary

      public double getLowerBoundary()
      Gets the value of the lowerBoundary property.

      Specifies the lower boundary for the tolerance.

    • setLowerBoundary

      public void setLowerBoundary(double value)
      Sets the value of the lowerBoundary property.
      See Also:
    • getUpperBoundary

      public double getUpperBoundary()
      Gets the value of the upperBoundary property.

      Specifies the upper boundary for the tolerance.

    • setUpperBoundary

      public void setUpperBoundary(double value)
      Sets the value of the upperBoundary property.
      See Also:
    • getParentNumericalValue

      public VecNumericalValue getParentNumericalValue()
      Gets a reference to the parent of this object in the XML DOM Tree. If this class can have different parents in DOM, this property is initialized with the parent, if the parent is a VecNumericalValue otherwise it will be null.
      Warning!: This is a readonly property! It has to be initialized during the unmarshalling process by the ExtendedUnmarshaller.
      This property is consistent to the state of object model at the time of unmarshalling. It does not reflect any changes done in the object model after the unmarshalling.
      This property has no effect when the object is marshalled to xml.
    • getParentDimension

      public VecDimension getParentDimension()
      Gets a reference to the parent of this object in the XML DOM Tree. If this class can have different parents in DOM, this property is initialized with the parent, if the parent is a VecDimension otherwise it will be null.
      Warning!: This is a readonly property! It has to be initialized during the unmarshalling process by the ExtendedUnmarshaller.
      This property is consistent to the state of object model at the time of unmarshalling. It does not reflect any changes done in the object model after the unmarshalling.
      This property has no effect when the object is marshalled to xml.
    • getParentDefaultDimension

      public VecDefaultDimension getParentDefaultDimension()
      Gets a reference to the parent of this object in the XML DOM Tree. If this class can have different parents in DOM, this property is initialized with the parent, if the parent is a VecDefaultDimension otherwise it will be null.
      Warning!: This is a readonly property! It has to be initialized during the unmarshalling process by the ExtendedUnmarshaller.
      This property is consistent to the state of object model at the time of unmarshalling. It does not reflect any changes done in the object model after the unmarshalling.
      This property has no effect when the object is marshalled to xml.
    • accept

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