public static class IntProperty.Factory extends Object implements PropertyFactory<IntProperty>
| Constructor and Description |
|---|
IntProperty.Factory(Attributes attrs) |
IntProperty.Factory(int defaultValue) |
| Modifier and Type | Method and Description |
|---|---|
void |
clone(IntProperty src,
int srcIndex,
IntProperty dst,
int dstIndex)
Copy the value from src at component index, srcIndex to
dst at dstIndex.
|
IntProperty |
create()
Return a new Property instance.
|
void |
setDefaultValue(IntProperty property,
int index)
Set the default value that the component at the specified index will see
before it's init() method is invoked.
|
public IntProperty.Factory(Attributes attrs)
public IntProperty.Factory(int defaultValue)
public IntProperty create()
PropertyFactorycreate in interface PropertyFactory<IntProperty>public void setDefaultValue(IntProperty property, int index)
PropertyFactorysetDefaultValue in interface PropertyFactory<IntProperty>property - The property whose value will be updatedindex - The component index to be updatedpublic void clone(IntProperty src, int srcIndex, IntProperty dst, int dstIndex)
PropertyFactoryEntity.add(com.lhkbob.entreri.Component).
For many cases a plain copy-by-value or copy-by-reference is sufficient, but some
component types might require more complicated cloning rules.clone in interface PropertyFactory<IntProperty>src - The source property that is being clonedsrcIndex - The index into src of the component being cloneddst - The destination property created from the templatedstIndex - The index into dst of the component being createdCopyright © 2013. All Rights Reserved.