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

net.sf.fmj.media.control.StringControl Maven / Gradle / Ivy

There is a newer version: 1.0.2-jitsi
Show newest version
package net.sf.fmj.media.control;

/**
 * A StringControl holds a string value and can be used to display status
 * information pertaining to the player. In most cases this will be a read-only
 * control.
 */
public interface StringControl extends AtomicControl
{
    String getTitle();

    /**
     * Returns the string value for this control.
     */
    String getValue();

    String setTitle(String title);

    /**
     * ??? Sets the string value for this control. Returns the actual string
     * that was set.
     */
    String setValue(String value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy