Uses of Class
net.nexttext.property.Property

Packages that use Property
net.nexttext   
net.nexttext.behaviour   
net.nexttext.behaviour.control   
net.nexttext.behaviour.physics   
net.nexttext.behaviour.standard   
net.nexttext.property   
 

Uses of Property in net.nexttext
 

Methods in net.nexttext that return Property
 Property PropertySet.get(java.lang.String name)
          Get the named property, null if it's not there.
 Property TextObject.getProperty(java.lang.String name)
          Get a single of property.
 

Methods in net.nexttext with parameters of type Property
 void TextObjectBuilder.addGlyphProperty(java.lang.String name, Property p)
          Created glyphs will get this property.
 void TextObjectBuilder.addGroupProperty(java.lang.String name, Property p)
          Created groups will get this property.
 void TextObject.init(java.lang.String name, Property property)
          Initialize a single of property.
 void PropertySet.init(java.lang.String name, Property value)
          Initialize the property with this value, if it's not already defined.
 

Method parameters in net.nexttext with type arguments of type Property
 void PropertySet.init(java.util.Map<java.lang.String,Property> properties)
          Initialize all the properties in the map, if not already defined.
 void TextObject.initProperties(java.util.Map<java.lang.String,Property> propertyMap)
          Initialize a bunch of properties.
 

Constructor parameters in net.nexttext with type arguments of type Property
TextObjectGlyph(java.lang.String glyph, processing.core.PFont pfont, float size, java.util.Map<java.lang.String,Property> props, processing.core.PVector pos)
          Constructor with extra properties and a specific position.
TextObjectGroup(java.util.Map<java.lang.String,Property> props, processing.core.PVector pos)
          Creates a new TextObjectGroup at the specified position, and with extra properties.
 

Uses of Property in net.nexttext.behaviour
 

Methods in net.nexttext.behaviour that return types with arguments of type Property
 java.util.Map<java.lang.String,Property> Action.getRequiredProperties()
          The properties that this action requires on a TextObject.
 java.util.Map<java.lang.String,Property> AbstractAction.getRequiredProperties()
          The properties that this action requires on a TextObject.
 

Uses of Property in net.nexttext.behaviour.control
 

Methods in net.nexttext.behaviour.control that return types with arguments of type Property
 java.util.Map<java.lang.String,Property> Timer.getRequiredProperties()
           
 java.util.Map<java.lang.String,Property> Selector.getRequiredProperties()
           
 java.util.Map<java.lang.String,Property> Repeat.getRequiredProperties()
           
 java.util.Map<java.lang.String,Property> OnCollision.getRequiredProperties()
           
 java.util.Map<java.lang.String,Property> Multiplexer.getRequiredProperties()
          The required properties are the union of all properties in the action chain.
 java.util.Map<java.lang.String,Property> DebugLog.getRequiredProperties()
           
 java.util.Map<java.lang.String,Property> Condition.getRequiredProperties()
           
 java.util.Map<java.lang.String,Property> Chain.getRequiredProperties()
          The required properties are the union of all properties in the action chain.
 

Uses of Property in net.nexttext.behaviour.physics
 

Methods in net.nexttext.behaviour.physics that return types with arguments of type Property
 java.util.Map<java.lang.String,Property> PhysicsAction.getRequiredProperties()
          Returns a Map containing a set of Vector3Properties required by all PhysicActions
 

Uses of Property in net.nexttext.behaviour.standard
 

Methods in net.nexttext.behaviour.standard that return types with arguments of type Property
 java.util.Map<java.lang.String,Property> FollowSibling.getRequiredProperties()
           
 

Uses of Property in net.nexttext.property
 

Subclasses of Property in net.nexttext.property
 class BooleanProperty
          A boolean property type.
 class ColorProperty
          A colour property of a TextObject or a Behaviour.
 class DateTimeProperty
          A datetime property of a TextObject or Behaviour.
 class NumberProperty
          A number property of a TextObject or Behaviour.
 class PVectorListProperty
          A property for list of PVectors.
 class PVectorProperty
          A PVector property of a TextObject or a Behaviour.
 class ShapeProperty
          A shape property of a TextObject or a Behaviour.
 class StrokeProperty
          A stroke property for a TextObject (using the BasicStroke implementation).
 

Methods in net.nexttext.property that return Property
 Property Property.clone()
          Get a new property with the same values as this one.
 

Methods in net.nexttext.property with parameters of type Property
 void PVectorListProperty.propertyChanged(Property pc)
          For interface PropertyChangeListener, called when one of the properties in the list changes.
 void PropertyChangeListener.propertyChanged(Property propertyThatChanged)