Skip to content

Commit d269cbc

Browse files
committed
# commit
1 parent 08b1bdd commit d269cbc

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

.project

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,15 @@
1414
<natures>
1515
<nature>org.eclipse.jdt.core.javanature</nature>
1616
</natures>
17+
<filteredResources>
18+
<filter>
19+
<id>1692244280313</id>
20+
<name></name>
21+
<type>30</type>
22+
<matcher>
23+
<id>org.eclipse.core.resources.regexFilterMatcher</id>
24+
<arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
25+
</matcher>
26+
</filter>
27+
</filteredResources>
1728
</projectDescription>

bin/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/module-info.class
2+
/resources/
3+
/simplejavacalculator/
4+
/simplejavacalculatorTest/

src/simplejavacalculator/UI.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@
3333
import java.awt.Image;
3434
import javax.swing.ImageIcon;
3535
import java.io.*;
36+
import java.awt.event.KeyEvent;
37+
import java.awt.event.KeyListener;
3638

3739
public class UI implements ActionListener {
3840

@@ -64,7 +66,7 @@ public class UI implements ActionListener {
6466
private ImageIcon image;
6567
private BufferedImageCustom imageReturn;
6668

67-
public UI() throws IOException {
69+
public UI()implements ActionListener, KeyListener throws IOException {
6870
frame = new JFrame("Calculator PH");
6971

7072
imageReturn = new BufferedImageCustom();

0 commit comments

Comments
 (0)