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

lphystudio.app.graphicalmodelpanel.viewer.Viewer Maven / Gradle / Ivy

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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy