Ignore:
Timestamp:
Apr 9, 2010, 6:02:36 PM (14 years ago)
Author:
tobias
Message:

messages resource validation added

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/MessagesItem.java

    r858 r859  
    11package de.dass_it.vanhelsing.gui.items;
    22public class MessagesItem extends ItemType implements UserObjectItem{
    3         /**
    4                  * @uml.property  name="name"
    5                  */
    6         private String name;
    7         /**
    8                  * @uml.property  name="mailcommand"
    9                  */
    10         private String mailcommand;
    11         /**
    12                  * @uml.property  name="destination"
    13                  */
    14         private String destination;
     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;
    1510
    16         public MessagesItem(){}
     11         public MessagesItem(){}
    1712       
    1813        public MessagesItem(String name, String mailCommand, String destination){
     
    2217        }
    2318
    24                 /**
    25                  * @param name
    26                  * @uml.property  name="name"
    27                  */
    2819                public void setName(String name) {
    2920                        this.name = name;
    3021                }
    3122
    32                 /**
    33                  * @return
    34                  * @uml.property  name="name"
    35                  */
    3623                public String getName() {
    3724                        return name;
    3825                }
    3926
    40                 /**
    41                  * @param mailcommand
    42                  * @uml.property  name="mailcommand"
    43                  */
    4427                public void setMailcommand(String mailcommand) {
    4528                        this.mailcommand = mailcommand;
    4629                }
    4730
    48                 /**
    49                  * @return
    50                  * @uml.property  name="mailcommand"
    51                  */
    5231                public String getMailcommand() {
    5332                        return mailcommand;
    5433                }
    5534
    56                 /**
    57                  * @param destination
    58                  * @uml.property  name="destination"
    59                  */
    6035                public void setDestination(String destination) {
    6136                        this.destination = destination;
    6237                }
    6338
    64                 /**
    65                  * @return
    66                  * @uml.property  name="destination"
    67                  */
    6839                public String getDestination() {
    6940                        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;
    7073                }
    7174       
Note: See TracChangeset for help on using the changeset viewer.