All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.logicommerce.sdk.models.ElementProperty Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
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); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy