source: vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/MessagesItem.java

Last change on this file was 859, checked in by tobias, on Apr 9, 2010 at 6:02:36 PM

messages resource validation added

File size: 1.5 KB
Line 
1package de.dass_it.vanhelsing.gui.items;
2public class MessagesItem extends ItemType implements UserObjectItem{
3 private String name;
4 private String mailcommand;
5 private String destination;
6 private String mail;
7 private String operatorcommand;
8 private String console;
9 private String operator;
10
11 public MessagesItem(){}
12
13 public MessagesItem(String name, String mailCommand, String destination){
14 setName(name);
15 setMailcommand(mailCommand);
16 setDestination(destination);
17 }
18
19 public void setName(String name) {
20 this.name = name;
21 }
22
23 public String getName() {
24 return name;
25 }
26
27 public void setMailcommand(String mailcommand) {
28 this.mailcommand = mailcommand;
29 }
30
31 public String getMailcommand() {
32 return mailcommand;
33 }
34
35 public void setDestination(String destination) {
36 this.destination = destination;
37 }
38
39 public String getDestination() {
40 return destination;
41 }
42
43 public void setMail(String mail) {
44 this.mail = mail;
45 }
46
47 public String getMail() {
48 return mail;
49 }
50
51 public void setOperatorcommand(String operatorcommand) {
52 this.operatorcommand = operatorcommand;
53 }
54
55 public String getOperatorcommand() {
56 return operatorcommand;
57 }
58
59 public void setConsole(String console) {
60 this.console = console;
61 }
62
63 public String getConsole() {
64 return console;
65 }
66
67 public void setOperator(String operator) {
68 this.operator = operator;
69 }
70
71 public String getOperator() {
72 return operator;
73 }
74
75
76}
Note: See TracBrowser for help on using the repository browser.