Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="resource"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="lib" path="C:/Users/re994/Desktop/AirData/resource/mail-1.4.7.jar"/>
<classpathentry kind="lib" path="C:/Users/re994/Desktop/AirData/resource/mysql-connector-java-8.0.18.jar"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER">
<attributes>
<attribute name="module" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="lib" path="/Users/baeinsu/eclipse-workspace/airdata/resource/mysql-connector-java-8.0.18.jar"/>
<classpathentry kind="lib" path="/Users/baeinsu/eclipse-workspace/airdata/resource/mail-1.4.7.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>
84 changes: 0 additions & 84 deletions src/Ui/Compare.java

This file was deleted.

117 changes: 0 additions & 117 deletions src/Ui/CompareResult.java

This file was deleted.

8 changes: 4 additions & 4 deletions src/Ui/DateChoice.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,22 +29,22 @@ public class DateChoice extends JFrame {
public int month, date;

DateChoice(){
setTitle("肄ㅻ낫諛뺤뒪");
setTitle("콤보박스");
Container c = getContentPane();
c.setLayout(new GridLayout(3, 1));
JPanel jp = new JPanel();
JPanel jp2 = new JPanel();
JPanel jp3 = new JPanel();
JLabel mon = new JLabel(" �썡");
JLabel day = new JLabel(" �씪");
JLabel mon = new JLabel(" ");
JLabel day = new JLabel(" ");
jp.setLayout(new FlowLayout(FlowLayout.CENTER, 0, 40));
jp2.setLayout(new GridLayout(2, 1));
jp3.setLayout(new FlowLayout());
JButton jb = new JButton("OK");
jb.setPreferredSize(new Dimension(80, 27));
JComboBox combo = new JComboBox(month1);
combo2 = new JComboBox(date1);
JLabel lab = new JLabel("�궇吏쒕�� �엯�젰�븯�꽭�슂");
JLabel lab = new JLabel("날짜를 입력하세요");
lab.setHorizontalAlignment (JLabel.CENTER);
jp.add(combo);
jp.add(mon);
Expand Down
8 changes: 0 additions & 8 deletions src/Ui/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,6 @@ public void actionPerformed(ActionEvent e) {
};
emailbutton.addActionListener(emailbuttonListener);

comparebutton.addActionListener(new ActionListener() {

public void actionPerformed(ActionEvent e) {
Compare compare = new Compare();
}

});

p.add(daylabel);
p.add(daybutton);
p.add(comparelabel);
Expand Down