KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > speedo > pobjects > intelli > Scope


1 /**
2  * Copyright (C) 2001-2004 France Telecom R&D
3  */

4 package org.objectweb.speedo.pobjects.intelli;
5
6 /**
7  *
8  *
9  * @author chassase
10  */

11 public class Scope {
12     String JavaDoc f1;
13     Role role;
14
15     /**
16      * @return Returns the f1.
17      */

18     public String JavaDoc getF1() {
19         return f1;
20     }
21     /**
22      * @param f1 The f1 to set.
23      */

24     public void setF1(String JavaDoc f1) {
25         this.f1 = f1;
26     }
27     
28     /**
29      * @return Returns the role.
30      */

31     public Role getRole() {
32         return role;
33     }
34     /**
35      * @param role The role to set.
36      */

37     public void setRole(Role role) {
38         this.role = role;
39     }
40 }
41
Popular Tags