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

tools.dynamia.viewers.LabelComponent Maven / Gradle / Ivy

There is a newer version: 5.3.0
Show newest version
package tools.dynamia.viewers;

import java.io.Serializable;

/**
 * Interface that represent a generic label
 */
public interface LabelComponent extends Serializable {

    String getValue();

    void setValue(String value);

    void setTooltiptext(String tooltiptext);

    String getTooltiptext();

    void setSclass(String sclass);

    String getSclass();

    void setVisible(boolean visible);

    boolean isVisible();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy