-
Notifications
You must be signed in to change notification settings - Fork 2
/
WizardButtonEvent.java
executable file
·62 lines (49 loc) · 1.56 KB
/
WizardButtonEvent.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
public class WizardButtonEvent extends java.util.EventObject {
private int buttonType;
private java.awt.Component card;
private int cardPosition;
/** Creates a new instance of WizardButtonEvent */
public WizardButtonEvent(WizardFrame wf,int buttonType,
java.awt.Component card,int cardPosition) {
super(wf);
this.buttonType = buttonType;
this.card = card;
this.cardPosition = cardPosition;
}
/** Getter for property buttonType.
* @return Value of property buttonType.
*/
public int getButtonType() {
return buttonType;
}
/** Setter for property buttonType.
* @param buttonType New value of property buttonType.
*/
public void setButtonType(int buttonType) {
this.buttonType = buttonType;
}
/** Getter for property card.
* @return Value of property card.
*/
public java.awt.Component getCard() {
return card;
}
/** Setter for property card.
* @param card New value of property card.
*/
public void setCard(java.awt.Component card) {
this.card = card;
}
/** Getter for property cardPosition.
* @return Value of property cardPosition.
*/
public int getCardPosition() {
return cardPosition;
}
/** Setter for property cardPosition.
* @param cardPosition New value of property cardPosition.
*/
public void setCardPosition(int cardPosition) {
this.cardPosition = cardPosition;
}
}