com.logicommerce.sdk.models.ElementProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
SDK for developing Logicommerce plugins.
package com.logicommerce.sdk.models;
/**
* ElementProperty interface.
*
* @author Logicommerce
* @since 1.0.16
*/
public interface ElementProperty {
/**
* Get name value of the element.
* @since 1.0.16
* @return a {@link java.lang.String String} object
*/
String getName();
/**
* Get value of the element.
*
* @since 1.0.16
* @return a {@link java.lang.String String} object
*/
String getValue();
/**
* Set name value of the element.
*
* @param name a {@link java.lang.String String} object
* @since 1.0.16
*/
void setName(String name);
/**
* Set value of the element.
*
* @param value a {@link java.lang.String String} object
* @since 1.0.16
*/
void setValue(String value);
}