Nengo.ca

ca.nengo.config.ui
Class ConfigurationTreeModel.Value

java.lang.Object
  extended by ca.nengo.config.ui.ConfigurationTreeModel.Value
Enclosing class:
ConfigurationTreeModel

public static class ConfigurationTreeModel.Value
extends java.lang.Object

A wrapper for property values: stores index and configuration (if applicable)


Constructor Summary
ConfigurationTreeModel.Value(int index, java.lang.Object object)
           
 
Method Summary
 Configuration getConfiguration()
           
 int getIndex()
           
 java.lang.String getName()
           
 java.lang.Object getObject()
           
 void setIndex(int index)
           
 void setName(java.lang.String name)
           
 void setObject(java.lang.Object o)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ConfigurationTreeModel.Value

public ConfigurationTreeModel.Value(int index,
                                    java.lang.Object object)
Parameters:
index - Property location
object - Owner object
Method Detail

getIndex

public int getIndex()
Returns:
Location

setIndex

public void setIndex(int index)
Parameters:
index - Location

setObject

public void setObject(java.lang.Object o)
Parameters:
o - Owner

getObject

public java.lang.Object getObject()
Returns:
Owner

getName

public java.lang.String getName()
Returns:
Name

setName

public void setName(java.lang.String name)
Parameters:
name - Name

getConfiguration

public Configuration getConfiguration()
Returns:
Configuration object

Nengo.ca