Files
tustu/app/bg/UIInBgPackage.java
2026-01-11 20:30:56 +00:00

36 lines
945 B
Java

package bg;
import G.GInterfaceBf;
import java.awt.BorderLayout;
import java.awt.GridLayout;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
public class UIInBgPackage extends JPanel {
JTextField a = new JTextField("", 20);
JTextField b = new JTextField("", 20);
GInterfaceBf c = null;
public UIInBgPackage() {
setLayout(new GridLayout(1, 0));
JPanel jPanel = new JPanel();
jPanel.setLayout(new BorderLayout());
jPanel.add("West", new JLabel("Tune View Reference Name:"));
jPanel.add("Center", this.a);
add(jPanel);
jPanel = new JPanel();
jPanel.setLayout(new BorderLayout());
jPanel.add("West", new JLabel("Tune View Tab Title:"));
jPanel.add("Center", this.b);
add(jPanel);
}
}
/* Location: /home/rewrich/Downloads/TunerStudioMS/TunerStudioMS/!/bg/n.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/