blob: 92fd09eded8937c1b81c52ce3ba67c9efcc6dda7 (
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
43
44
45
46
47
48
49
50
51
|
package cppcheckplus.outlookpanel;
import javax.swing.Icon;
public class MyOutlookPanelListItem
{
private Icon icon;
private String text;
private String toolTip;
private String actionCommand;
public void setIcon(Icon icon)
{
this.icon = icon;
}
public Icon getIcon()
{
return icon;
}
public void setText(String value)
{
this.text = value;
}
public String getText()
{
return text;
}
public void setToolTip(String toolTip)
{
this.toolTip = toolTip;
}
public String getToolTip()
{
return toolTip;
}
public void setActionCommand(String actionCommand)
{
this.actionCommand = actionCommand;
}
public String getActionCommand()
{
return actionCommand;
}
}
|