lphystudio.app.graphicalmodelpanel.AlignmentLogPanel 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 javax.swing.*;
import java.awt.*;
import java.util.prefs.Preferences;
/**
* @author Walter Xie
*/
public class AlignmentLogPanel extends JPanel {
static Preferences preferences = Preferences.userNodeForPackage(AlignmentLogPanel.class);
final JScrollPane jScrollPane;
public AlignmentLogPanel(Component view) {
this.jScrollPane = new JScrollPane(view);
setLayout(new BorderLayout());
add(jScrollPane, BorderLayout.CENTER);
}
}