Files
JavaCalculator/src/main/java/com/mycompany/javacalculator/OpButton.java
2023-01-12 13:53:22 -06:00

23 lines
637 B
Java

/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
*/
package com.mycompany.javacalculator;
import javax.swing.JButton;
import com.mycompany.javacalculator.Operands.Operand;
/**
*
* @author mikayladobson
*/
public class OpButton extends JButton {
private final Operand operand;
public OpButton(Operand operand, JavaCalculator calculator) {
this.operand = operand;
this.addActionListener(calculator);
this.setText(Operands.toLabel(operand));
}
}