Created
April 13, 2012 09:23
-
-
Save topriddy/2375386 to your computer and use it in GitHub Desktop.
Simple example that demonstrates concept of MVC in a java app
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.awt.GridLayout; | |
import java.awt.event.ActionEvent; | |
import java.awt.event.ActionListener; | |
import javax.swing.JButton; | |
import javax.swing.JFrame; | |
import javax.swing.JLabel; | |
import javax.swing.JOptionPane; | |
import javax.swing.JTextField; | |
public class AdditionUI extends JFrame{ | |
JTextField txtNumber1; | |
JTextField txtNumber2; | |
JTextField txtSum; | |
JButton bttnAdd; | |
JButton bttnClear; | |
Calculator calc; | |
public AdditionUI(Calculator c){ | |
calc = c; | |
setLayout(new GridLayout(4, 4)); | |
setSize(250,150); | |
add(new JLabel("First Number: ")); | |
add(txtNumber1 = new JTextField(10)); | |
add(new JLabel("Second Number: ")); | |
add(txtNumber2 = new JTextField(10)); | |
add(new JLabel("Sum: ")); | |
add(txtSum = new JTextField(10)); | |
txtSum.setEnabled(false); | |
ActionListener l = new AdditionListener(); | |
bttnAdd = new JButton("Add"); | |
bttnAdd.addActionListener(l); | |
add(bttnAdd); | |
bttnClear = new JButton("Clear"); | |
bttnClear.addActionListener(l); | |
add(bttnClear); | |
} | |
private class AdditionListener implements ActionListener{ | |
@Override | |
public void actionPerformed(ActionEvent e) { | |
if(e.getSource() == bttnAdd){ | |
addNumbers(); | |
}else if(e.getSource()== bttnClear){ | |
clearFields(); | |
} | |
} | |
private void addNumbers(){ | |
try{ | |
calc.setOperand1(Double.parseDouble(txtNumber1.getText())); | |
calc.setOperand2(Double.parseDouble(txtNumber2.getText())); | |
calc.add(); | |
txtSum.setText(String.valueOf(calc.getResult())); | |
}catch(Exception ex){ | |
JOptionPane.showMessageDialog(AdditionUI.this, "Error occured computing sum"); | |
ex.printStackTrace(); | |
} | |
} | |
private void clearFields(){ | |
txtNumber1.setText(""); | |
txtNumber2.setText(""); | |
txtSum.setText(""); | |
} | |
} | |
public static void main(String args[]){ | |
Calculator calc = new Calculator(); | |
JFrame app = new AdditionUI(calc); | |
app.setTitle("Sum Application"); | |
app.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); | |
app.setVisible(true); | |
} | |
} | |
public class Calculator { | |
private double operand1, operand2, result; | |
public void setOperand1(int o) { | |
operand1 = o; | |
} | |
public void setOperand2(int o) { | |
operand2 = o; | |
} | |
public void add() { | |
result = operand1 + operand2; | |
} | |
public double getResult() { | |
return result; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.awt.GridLayout; | |
import java.awt.event.ActionEvent; | |
import java.awt.event.ActionListener; | |
import javax.swing.JButton; | |
import javax.swing.JFrame; | |
import javax.swing.JLabel; | |
import javax.swing.JOptionPane; | |
import javax.swing.JTextField; | |
public class AdditionUI extends JFrame{ | |
JTextField txtNumber1; | |
JTextField txtNumber2; | |
JTextField txtSum; | |
JButton bttnAdd; | |
JButton bttnClear; | |
Calculator calc; | |
public AdditionUI(Calculator c){ | |
calc = c; | |
setLayout(new GridLayout(4, 4)); | |
setSize(250,150); | |
add(new JLabel("First Number: ")); | |
add(txtNumber1 = new JTextField(10)); | |
add(new JLabel("Second Number: ")); | |
add(txtNumber2 = new JTextField(10)); | |
add(new JLabel("Sum: ")); | |
add(txtSum = new JTextField(10)); | |
txtSum.setEnabled(false); | |
ActionListener l = new AdditionListener(); | |
bttnAdd = new JButton("Add"); | |
bttnAdd.addActionListener(l); | |
add(bttnAdd); | |
bttnClear = new JButton("Clear"); | |
bttnClear.addActionListener(l); | |
add(bttnClear); | |
} | |
private class AdditionListener implements ActionListener{ | |
@Override | |
public void actionPerformed(ActionEvent e) { | |
if(e.getSource() == bttnAdd){ | |
addNumbers(); | |
}else if(e.getSource()== bttnClear){ | |
clearFields(); | |
} | |
} | |
private void addNumbers(){ | |
try{ | |
calc.setOperand1(Double.parseDouble(txtNumber1.getText())); | |
calc.setOperand2(Double.parseDouble(txtNumber2.getText())); | |
calc.add(); | |
txtSum.setText(String.valueOf(calc.getResult())); | |
}catch(Exception ex){ | |
JOptionPane.showMessageDialog(AdditionUI.this, "Error occured computing sum"); | |
ex.printStackTrace(); | |
} | |
} | |
private void clearFields(){ | |
txtNumber1.setText(""); | |
txtNumber2.setText(""); | |
txtSum.setText(""); | |
} | |
} | |
public static void main(String args[]){ | |
Calculator calc = new Calculator(); | |
JFrame app = new AdditionUI(calc); | |
app.setTitle("Sum Application"); | |
app.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); | |
app.setVisible(true); | |
} | |
} | |
public class Calculator { | |
private double operand1, operand2, result; | |
public void setOperand1(int o) { | |
operand1 = o; | |
} | |
public void setOperand2(int o) { | |
operand2 = o; | |
} | |
public void add() { | |
result = operand1 + operand2; | |
} | |
public double getResult() { | |
return result; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment