Package de.javagl.ply

Interface MutableElement

  • All Superinterfaces:
    Element

    public interface MutableElement
    extends Element
    An Element where property values may be modified
    • 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 property
        value - 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 property
        value - 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 property
        value - 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 property
        value - 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 property
        value - 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 property
        value - 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 property
        value - 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 property
        value - 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 property
        value - 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 property
        value - The value for the property