Interface ElementProperty

All Known Subinterfaces:
CustomTag, OrderAdditionalInformation
All Known Implementing Classes:
CustomTagImpl, ElementPropertyPlugin, ElementProperyImpl, OrderAdditionalInformationImpl

public interface ElementProperty

ElementProperty interface.

Since:
1.0.16
Author:
Logicommerce
  • Method Summary

    Modifier and Type
    Method
    Description
    Get name value of the element.
    Get value of the element.
    void
    Set name value of the element.
    void
    Set value of the element.
  • Method Details

    • getName

      String getName()

      Get name value of the element.

      Returns:
      a String object
      Since:
      1.0.16
    • getValue

      String getValue()

      Get value of the element.

      Returns:
      a String object
      Since:
      1.0.16
    • setName

      void setName(String name)

      Set name value of the element.

      Parameters:
      name - a String object
      Since:
      1.0.16
    • setValue

      void setValue(String value)

      Set value of the element.

      Parameters:
      value - a String object
      Since:
      1.0.16