Package | Description |
---|---|
org.opentrafficsim.base.modelproperties |
Model properties to initialize models.
|
Modifier and Type | Method and Description |
---|---|
void |
CompoundProperty.add(int index,
Property<?> ap)
Add a Property at a specified position.
|
void |
CompoundProperty.add(Property<?> ap)
Add a Property at the end of the list.
|
Property<?> |
CompoundProperty.get(int index)
Return the sub property at a specified index.
|
void |
CompoundProperty.remove(int index)
Remove a sub property from this CompoundProperty.
|
void |
CompoundProperty.remove(Property<?> removeMe)
Remove a property from this CompoundProperty.
|
void |
BooleanProperty.setValue(Boolean newValue)
Change the value of the property.
|
void |
ContinuousProperty.setValue(Double newValue)
Change the value of the property.
|
void |
ProbabilityDistributionProperty.setValue(Double[] newValue)
Change the value of the property.
|
void |
IntegerProperty.setValue(Integer newValue)
Change the value of the property.
|
void |
CompoundProperty.setValue(List<Property<?>> newValue)
Change the value of the property.
|
void |
StringProperty.setValue(String newValue)
Change the value of the property.
|
void |
SelectionProperty.setValue(String newValue)
Change the value of the property.
|
void |
Property.setValue(T newValue)
Change the value of the property.
|
Constructor and Description |
---|
BooleanProperty(String key,
String shortName,
String description,
Boolean initialValue,
boolean readOnly,
int displayPriority)
Construct an BooleanProperty.
|
CompoundProperty(String key,
String shortName,
String description,
List<Property<?>> initialValue,
boolean readOnly,
int displayPriority)
Construct a CompoundProperty.
|
ProbabilityDistributionProperty(String key,
String shortName,
String description,
String[] elementNames,
Double[] initialValue,
boolean readOnly,
int displayPriority)
Construct a new ProbabilityDistributionProperty.
|
Copyright © 2014–2016 Delft University of Technology. All rights reserved.