KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > applications > packaging > projects > editors > cloudmodel > AllowedRelation


1 /*
2  * This software is OSI Certified Open Source Software.
3  * OSI Certified is a certification mark of the Open Source Initiative.
4  * The license (Mozilla version 1.0) can be read at the MMBase site.
5  * See http://www.MMBase.org/license
6  */

7 package org.mmbase.applications.packaging.projects.editors.cloudmodel;
8
9 /**
10  */

11 public class AllowedRelation {
12     String JavaDoc from;
13     String JavaDoc to;
14     String JavaDoc type;
15
16     public String JavaDoc getFrom() {
17         return from;
18     }
19
20     public void setFrom(String JavaDoc from) {
21         this.from = from;
22     }
23
24     public String JavaDoc getTo() {
25         return to;
26     }
27
28     public void setTo(String JavaDoc to) {
29         this.to = to;
30     }
31
32     public String JavaDoc getType() {
33         return type;
34     }
35
36     public void setType(String JavaDoc type) {
37         this.type = type;
38     }
39
40 }
41
Popular Tags