- 2
- 0
- 约3.67万字
- 约 28页
- 2019-03-01 发布于江苏
- 举报
//BusSystem.java
//秦皇岛公交信息查询系统单机测试平台
//用于以窗口形式输入查询站点,输出乘车方案
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.border.TitledBorder;
public class BusSystem extends JFrame implements ActionListener
{
private JTextField jtfBeginSta=new JTextField(10);
private JTextField jtfEndSta=new JTextField(10);
private JTextArea jtaResult;
private JButton jbtQuery=new JButton(查询);
public BusSystem()
{
//jtfBeginSta.setHorizontalAlignment(JTextField.RIGHT);
原创力文档

文档评论(0)