Package de.javagl.ply
Interface MutableElement
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetCharListProperty(String name, byte[] value)Set the given value for the property with the given namevoidsetCharProperty(String name, Byte value)Set the given value for the property with the given namevoidsetDoubleListProperty(String name, double[] value)Set the given value for the property with the given namevoidsetDoubleProperty(String name, Double value)Set the given value for the property with the given namevoidsetFloatListProperty(String name, float[] value)Set the given value for the property with the given namevoidsetFloatProperty(String name, Float value)Set the given value for the property with the given namevoidsetIntListProperty(String name, int[] value)Set the given value for the property with the given namevoidsetIntProperty(String name, Integer value)Set the given value for the property with the given namevoidsetShortListProperty(String name, short[] value)Set the given value for the property with the given namevoidsetShortProperty(String name, Short value)Set the given value for the property with the given name-
Methods inherited from interface de.javagl.ply.Element
getCharListProperty, getCharProperty, getDoubleListProperty, getDoubleProperty, getFloatListProperty, getFloatProperty, getIntListProperty, getIntProperty, getShortListProperty, getShortProperty
-
-
-
-
Method Detail
-
setCharProperty
void setCharProperty(String name, Byte value)
Set the given value for the property with the given name- Parameters:
name- The name of the propertyvalue- The value for the property
-
setShortProperty
void setShortProperty(String name, Short value)
Set the given value for the property with the given name- Parameters:
name- The name of the propertyvalue- The value for the property
-
setIntProperty
void setIntProperty(String name, Integer value)
Set the given value for the property with the given name- Parameters:
name- The name of the propertyvalue- The value for the property
-
setFloatProperty
void setFloatProperty(String name, Float value)
Set the given value for the property with the given name- Parameters:
name- The name of the propertyvalue- The value for the property
-
setDoubleProperty
void setDoubleProperty(String name, Double value)
Set the given value for the property with the given name- Parameters:
name- The name of the propertyvalue- The value for the property
-
setCharListProperty
void setCharListProperty(String name, byte[] value)
Set the given value for the property with the given name- Parameters:
name- The name of the propertyvalue- The value for the property
-
setShortListProperty
void setShortListProperty(String name, short[] value)
Set the given value for the property with the given name- Parameters:
name- The name of the propertyvalue- The value for the property
-
setIntListProperty
void setIntListProperty(String name, int[] value)
Set the given value for the property with the given name- Parameters:
name- The name of the propertyvalue- The value for the property
-
setFloatListProperty
void setFloatListProperty(String name, float[] value)
Set the given value for the property with the given name- Parameters:
name- The name of the propertyvalue- The value for the property
-
setDoubleListProperty
void setDoubleListProperty(String name, double[] value)
Set the given value for the property with the given name- Parameters:
name- The name of the propertyvalue- The value for the property
-
-