remark_interface.java

来自「it is basic library management」· Java 代码 · 共 29 行

JAVA
29
字号
import javax.swing.*;
import java.awt.*;

public interface remark_Interface
{
    public JTextField patron_text = new JTextField(20); 
    public JTextField name_text = new JTextField(20);
    public JTextField passport_text = new JTextField(20);
    public JTextField expiry_date_text = new JTextField(20);
    public JTextField reg_by_text = new JTextField(20);
    public JTextField reg_date_text = new JTextField(20);
    public JLabel patron = new JLabel("Patron Master");
    public JLabel patron_no = new JLabel("Patron No");
    public JLabel name = new JLabel("Name");
    public JLabel salute = new JLabel("Salute");
    public JLabel passport = new JLabel("IC/Passport");
    public JLabel group = new JLabel("Group Type");
    public JLabel status = new JLabel("Status");
    public JLabel expiry_date = new JLabel("Expiry Date");
    public JLabel reg_by = new JLabel("Registered By");
    public JLabel reg_date = new JLabel("Registration Date");
    public String group_str[] = {"   Student   ","   Lecturer   "};
    public String status_str[] = {" Active ", "Disabled"};
    public String salute_str[] = {"   Mr   ", "   Mrs   "};
    public JComboBox group_combo = new JComboBox(group_str);
    public JComboBox status_combo = new JComboBox(status_str);
    public JComboBox salute_combo = new JComboBox(salute_str);
    public JPanel main_panel = new JPanel();
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?