lphystudio.app.graphicalmodelpanel.viewer.Viewer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lphy-studio Show documentation
Show all versions of lphy-studio Show documentation
The GUI for LPhy language.
The newest version!
package lphystudio.app.graphicalmodelpanel.viewer;
import javax.swing.*;
public interface Viewer {
/**
* @param value
* @return true if this viewer can be used for the given value
*/
boolean match(T value);
/**
* @param value
* @return a viewer for the given value.
*/
JComponent getViewer(T value);
}