Ignore:
Timestamp:
Apr 9, 2010, 10:56:07 AM (14 years ago)
Author:
tobias
Message:

visual design slightly modified. tree functions extended

File:
1 edited

Legend:

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

    r844 r858  
    11package de.dass_it.vanhelsing.gui.items;
    22public class MessagesItem extends ItemType implements UserObjectItem{
     3        /**
     4                 * @uml.property  name="name"
     5                 */
    36        private String name;
    4         private String mailCommand;
     7        /**
     8                 * @uml.property  name="mailcommand"
     9                 */
     10        private String mailcommand;
     11        /**
     12                 * @uml.property  name="destination"
     13                 */
    514        private String destination;
    615
     
    918        public MessagesItem(String name, String mailCommand, String destination){
    1019                setName(name);
    11                 setMailCommand(mailCommand);
     20                setMailcommand(mailCommand);
    1221                setDestination(destination);
    1322        }
    1423
     24                /**
     25                 * @param name
     26                 * @uml.property  name="name"
     27                 */
    1528                public void setName(String name) {
    1629                        this.name = name;
    1730                }
    1831
     32                /**
     33                 * @return
     34                 * @uml.property  name="name"
     35                 */
    1936                public String getName() {
    2037                        return name;
    2138                }
    2239
    23                 public void setMailCommand(String mailCommand) {
    24                         this.mailCommand = mailCommand;
     40                /**
     41                 * @param mailcommand
     42                 * @uml.property  name="mailcommand"
     43                 */
     44                public void setMailcommand(String mailcommand) {
     45                        this.mailcommand = mailcommand;
    2546                }
    2647
    27                 public String getMailCommand() {
    28                         return mailCommand;
     48                /**
     49                 * @return
     50                 * @uml.property  name="mailcommand"
     51                 */
     52                public String getMailcommand() {
     53                        return mailcommand;
    2954                }
    3055
     56                /**
     57                 * @param destination
     58                 * @uml.property  name="destination"
     59                 */
    3160                public void setDestination(String destination) {
    3261                        this.destination = destination;
    3362                }
    3463
     64                /**
     65                 * @return
     66                 * @uml.property  name="destination"
     67                 */
    3568                public String getDestination() {
    3669                        return destination;
Note: See TracChangeset for help on using the changeset viewer.