Uses of Interface
ca.nengo.config.Property

Packages that use Property
ca.nengo.config   
ca.nengo.config.impl   
 

Uses of Property in ca.nengo.config
 

Subinterfaces of Property in ca.nengo.config
 interface ListProperty
          A Property that can have multiple values, each of which is identified by an integer index.
 interface NamedValueProperty
          A property that can have multiple values, each of which is indexed by a String name.
 interface SingleValuedProperty
          A Property that has a single value.
 

Methods in ca.nengo.config that return Property
 Property Configuration.getProperty(java.lang.String name)
           
 

Uses of Property in ca.nengo.config.impl
 

Classes in ca.nengo.config.impl that implement Property
 class AbstractProperty
          Base implementation of Property.
 class ListPropertyImpl
          Default implementation of ListProperty.
 class NamedValuePropertyImpl
          Default implementation of NamedValueProperty.
 class SingleValuedPropertyImpl
          Default implementation of single-valued Properties.
 class TemplateArrayProperty
          A ListProperty that is not attached to getter/setter methods on an underlying class, but instead stores its values internally.
 class TemplateProperty
          A SingleValuedProperty that is not attached to getter/setter methods on an underlying class, but instead stores its value internally.
 

Methods in ca.nengo.config.impl that return Property
 Property ConfigurationImpl.getProperty(java.lang.String name)
           
 

Methods in ca.nengo.config.impl with parameters of type Property
 void ConfigurationImpl.defineProperty(Property property)
          To be called by the associated Configurable, immediately after construction (once per property).