lphystudio.app.graphicalmodelpanel.VectorValueViewer 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;
import lphy.core.model.datatype.Vector;
import lphystudio.app.graphicalmodelpanel.viewer.Viewer;
import javax.swing.*;
public class VectorValueViewer implements Viewer {
@Override
public boolean match(Object value) {
return value instanceof Vector;
}
public JComponent getViewer(Object value) {
return new VectorComponent((Vector)value);
}
}