blob: 421ff09b2ced3be9be4c14ad88b7ec771af1407a (
plain) (
blame)
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
|
package cppcheckplus.outlookpanel;
import javax.swing.Icon;
public class MyOutlookPanelListItem {
private Icon icon;
private String text;
private String toolTip;
private String actionCommand;
public Icon getIcon() {
return icon;
}
public void setIcon(Icon icon) {
this.icon = icon;
}
public String getText() {
return text;
}
public void setText(String value) {
this.text = value;
}
public String getToolTip() {
return toolTip;
}
public void setToolTip(String toolTip) {
this.toolTip = toolTip;
}
public String getActionCommand() {
return actionCommand;
}
public void setActionCommand(String actionCommand) {
this.actionCommand = actionCommand;
}
}
|