Uses of Class
com.tensegrity.generic.attribute.IllegalValueException

Packages that use IllegalValueException
com.tensegrity.composite.coordinate Provides interfaces and classes for creating and dealing with coordinate systems. 
com.tensegrity.composite.geometry.persistence Provides interfaces and classes for making geometry attributes of composites persistent. 
com.tensegrity.composite.persistence Provides classes for making composite objects persistent. 
com.tensegrity.generic.attribute Contains interfaces that define the attribute framework and its associated exceptions. 
com.tensegrity.generic.attribute.customattribute   
com.tensegrity.generic.persistence Holds classes and interfaces useful to make instances of objects of the Tensegrity-API persistent.  
com.tensegrity.generic.util Core classes for tensegrity-software packages.  
com.tensegrity.graph.layout.controller The controller package contains several concrete implementations of abstract class LayoutController which can be used in many common applications.  
com.tensegrity.graph.model Contains the graph model interface.  
com.tensegrity.graphics Contains basic classes and interfaces of the Tensegrity graphics framework.  
com.tensegrity.graphics.primitive2D Contains classes that define graphical primitives in 2D space.  
com.tensegrity.gui.container   
com.tensegrity.gui.graphdocument This package contains the GraphDocument interface, a Factory for creating such documents as well as a definition for a panel which may hold such documents.  
com.tensegrity.gui.graphdocument.persistence   
com.tensegrity.gui.swing.control.attributetable This package contains the AttributeTable implementation. 
com.tensegrity.gui.swing.customattribute This package demonstrates how to implement a CustomAttribute.  
 

Uses of IllegalValueException in com.tensegrity.composite.coordinate
 

Methods in com.tensegrity.composite.coordinate that throw IllegalValueException
static Attribute CoordinateSystemUtilities.toAttribute(CoordinateSystem coordSystem, java.lang.String name)
          Method toAttribute converts an instance of CoordinateSystem to an Attribute.
static Attribute CoordinateSystemUtilities.toAttribute(CoordinateSystem coordSystem)
          Returns an Attribute representing the given CoordinateSystem.
 

Uses of IllegalValueException in com.tensegrity.composite.geometry.persistence
 

Methods in com.tensegrity.composite.geometry.persistence that throw IllegalValueException
static void GeometryPersistenceUtilities.addSize(AttributeCollection collection, java.lang.String attName, Size size)
          This methods adds the parameter Size to the given AttributeCollection by creating a comma separated string from the values of the Size.extensions array and using the parameter String attName as name for the newly added attribute.
 

Uses of IllegalValueException in com.tensegrity.composite.persistence
 

Methods in com.tensegrity.composite.persistence that throw IllegalValueException
protected  Attribute CompositeGroupSerializer.getAnchorAttribute(java.lang.String attributeName, Anchor anchor)
           
protected  void CompositeSwimLanePoolSerializer.addComposites(AttributeList composites)
           
 

Uses of IllegalValueException in com.tensegrity.generic.attribute
 

Methods in com.tensegrity.generic.attribute that throw IllegalValueException
abstract  Attribute AttributeFactory.newAttribute(java.lang.String name, java.lang.Object value)
          This method returns an Attribute with given name and value.
abstract  Attribute AttributeFactory.newAttribute(java.lang.String name, java.lang.Object value, Constraint constraint)
          This method return an Attribute with given name, value and constraint.
static boolean AttributeSetPool.addAttributePaths(AttributeCollection collection)
          Adds the list or set of attributes to the pool.
protected static boolean AttributeSetPool.addAttributePaths(AttributeCollection collection, AttributeSet parentSet, java.lang.String path)
          Adds the list or set of attributes to the pool.
static AttributeList AttributeSetPool.getAttributes()
          Returns all attributes in the pool.
protected static AttributeSet AttributeSetPool.assertPath(AttributeCollection collection, java.lang.String path)
          Returns the attributeset at the location defined by the given path.
 void GenericAttributableOnSet.setAttribute(Attribute attribute)
           
 void GenericAttributableOnSet.setAttributeValue(java.lang.String name, java.lang.Object value)
           
 void Attribute.setValue(java.lang.Object value)
          Sets the Attribute value.
 java.util.Iterator AttributeCollection.findAndFlatten(java.lang.String path)
          This method assembles attributes that match the path into a list of flat ones.
 void Attributable.setAttribute(Attribute attribute)
          Sets the value of the attribute with the same name to the value of the given attribute.
 void Attributable.setAttributeValue(java.lang.String name, java.lang.Object value)
          Sets the value of the attribute with the name to the given value.
 

Uses of IllegalValueException in com.tensegrity.generic.attribute.customattribute
 

Methods in com.tensegrity.generic.attribute.customattribute that throw IllegalValueException
 void HRefAttribute.setValue(java.lang.Object value)
           
 

Uses of IllegalValueException in com.tensegrity.generic.persistence
 

Methods in com.tensegrity.generic.persistence that throw IllegalValueException
protected  boolean XMLReader.parseToCollection(org.w3c.dom.Element elem, AttributeCollection collection)
          Deprecated. Parses a xml element (and its subnodes) to fill the given collection
 

Uses of IllegalValueException in com.tensegrity.generic.util
 

Methods in com.tensegrity.generic.util that throw IllegalValueException
static boolean AttributeOperations.mergeAttributesImmutable(AttributeSet current, AttributeSet updated)
          Updates the attribute values in the given AttributeSet current with the values in updated.
static boolean AttributeOperations.updateAttributes(AttributeSet current, AttributeSet updated, boolean addMissing)
          Updates the attribute values in the given AttributeSet current with the values in updated.
static boolean AttributeOperations.updateAttributes(AttributeSet current, AttributeSet updated, boolean addMissing, boolean updateMutability)
          Updates the attribute values in the given AttributeSet current with the values in updated.
static boolean AttributeOperations.updateAttributes(AttributeSet current, AttributeSet updated, boolean addMissing, boolean updateMutability, boolean updateConstraint, boolean ignoreConstraintViolations)
          Updates the attribute values in the given AttributeSet current with the values in updated.
static boolean AttributeOperations.updateAttributeCollection(AttributeCollection current, AttributeCollection updated, boolean addMissing)
          Updates the attribute values in the given AttributeSet current with the values in updated.
static java.util.Collection AttributeOperations.flattenStructure(AttributeCollection attribs)
          Converts a hierarchical attribute collection structure to a flat list of attributes by storing the hierarchical information as complete path name in the new names of the attributes that are stored in the list.
static java.util.Collection AttributeOperations.flattenStructure(AttributeCollection attribs, boolean includeCollections)
          Converts a hierarchical attribute collection structure to a flat list of attributes by storing the hierarchical information as complete path name in the new names of the attributes that are stored in the list.
static java.util.Collection AttributeOperations.flattenStructure(AttributeCollection attribs, boolean includeCollections, java.lang.String pathSeparator)
          Converts a hierarchical attribute collection structure to a flat list of attributes by storing the hierarchical information as complete path name in the new names of the attributes that are stored in the list.
static AttributeCollection AttributeOperations.getMutableCopy(AttributeCollection coll)
          Creates a mutable copy of an AttributeCollection by creating new mutable attributes containing the original name, value and constraint.
 

Uses of IllegalValueException in com.tensegrity.graph.layout.controller
 

Methods in com.tensegrity.graph.layout.controller that throw IllegalValueException
 void LayoutController.setAttribute(Attribute attribute)
           
 void LayoutController.setAttributeValue(java.lang.String name, java.lang.Object value)
           
 

Uses of IllegalValueException in com.tensegrity.graph.model
 

Methods in com.tensegrity.graph.model that throw IllegalValueException
 boolean GraphObject.assertCustomAttribute(java.lang.String path, java.lang.Object value)
          Sets the value of a custom attributes and creates it first, if it doesn't exist.
 boolean GraphObject.assertCustomAttribute(Attribute attribute)
          Sets a custom attribute and adds it, if it doesn't exist yet.
 

Uses of IllegalValueException in com.tensegrity.graphics
 

Methods in com.tensegrity.graphics that throw IllegalValueException
 void AbstractPrimitive.setAttribute(Attribute attribute)
           
 void AbstractPrimitive.setAttributeValue(java.lang.String name, java.lang.Object value)
           
 

Uses of IllegalValueException in com.tensegrity.graphics.primitive2D
 

Methods in com.tensegrity.graphics.primitive2D that throw IllegalValueException
 void Polygon2D.setAttributeValue(java.lang.String name, java.lang.Object value)
           
 void Ellipse2D.setAttributeValue(java.lang.String name, java.lang.Object value)
           
 void Polyline2D.setAttributeValue(java.lang.String name, java.lang.Object value)
           
 void Rect2D.setAttributeValue(java.lang.String name, java.lang.Object value)
           
 void Line2D.setAttributeValue(java.lang.String name, java.lang.Object value)
           
 void Label2D.setAttributeValue(java.lang.String name, java.lang.Object value)
           
 

Uses of IllegalValueException in com.tensegrity.gui.container
 

Methods in com.tensegrity.gui.container that throw IllegalValueException
 void HiddenSlidesAttributableOnSet.setAttribute(Attribute attribute)
           
 void HiddenSlidesAttributableOnSet.setAttributeValue(java.lang.String name, java.lang.Object value)
           
 

Uses of IllegalValueException in com.tensegrity.gui.graphdocument
 

Methods in com.tensegrity.gui.graphdocument that throw IllegalValueException
static void ElementDefinitionUtil.convertLayoutAttributeNames(AttributeCollection coll)
          Converts the names of layout attributes from the old version to the new one.
static void ElementDefinitionUtil.convertVisualGraphObjectLayoutAttributes(AttributeCollection coll)
          Converts layout attributes of VisualGraphObjects that have changed (e.g. after introduction of new attributes to the layout that replace the old ones).
 void ElementDefinitionUtil.RenameAttributable.setAttribute(Attribute attribute)
           
 void ElementDefinitionUtil.RenameAttributable.setAttributeValue(java.lang.String name, java.lang.Object value)
           
 

Constructors in com.tensegrity.gui.graphdocument that throw IllegalValueException
GraphDocumentSettingsProvider(Document gDoc, java.util.Map mapPref2Doc, java.lang.String preferenceFileName, java.lang.Class refClass)
          Constructor
 

Uses of IllegalValueException in com.tensegrity.gui.graphdocument.persistence
 

Methods in com.tensegrity.gui.graphdocument.persistence that throw IllegalValueException
protected  void GraphDocumentWriter.saveStyles(AttributeList list, GraphDocument gDoc)
          Saves the styles to the given AttributeList structure.
protected  void GraphDocumentWriter.saveGeometries(AttributeList list, GraphDocument gDoc)
          Saves the geometries to the given AttributeList structure.
protected  void GraphDocumentWriter.saveRules(AttributeList list, GraphDocument gDoc)
          Saves the rules to the given AttributeList structure.
protected  void GraphDocumentWriter.saveLayouts(AttributeList list, GraphDocument gDoc)
          Saves the layout configuration to the given AttributeList structure.
 

Uses of IllegalValueException in com.tensegrity.gui.swing.control.attributetable
 

Methods in com.tensegrity.gui.swing.control.attributetable that throw IllegalValueException
protected  boolean MetricAttribute.checkValue(java.lang.Object value)
          Checks whether this value is allowed as an attribute-value.
 void MetricAttribute.setValue(java.lang.Object newValue)
           
 

Constructors in com.tensegrity.gui.swing.control.attributetable that throw IllegalValueException
MetricAttribute(Attribute attribute)
          Creates a new MetricAttribute from a Attribute.
MetricAttribute(java.lang.String name, java.lang.Object value, Constraint constraint, CoordinateSystemMetric coordinateSystemMetric)
          Contructs a new mutable attribute from the given key-value pair and the given constraint.
 

Uses of IllegalValueException in com.tensegrity.gui.swing.customattribute
 

Methods in com.tensegrity.gui.swing.customattribute that throw IllegalValueException
 void ItemListAttribute.setValue(java.lang.Object value)
           
 void FormatAttribute.setValue(java.lang.Object value)
           
 



Copyright © 2005 Tensegrity Software GmbH. All Rights Reserved. Date of creation: 09.06.2006.