01: /**
02: * Copyright (C) 2001-2004 France Telecom R&D
03: */package org.objectweb.speedo.pobjects.intelli;
04:
05: /**
06: *
07: *
08: * @author chassase
09: */
10: public class Scope {
11: String f1;
12: Role role;
13:
14: /**
15: * @return Returns the f1.
16: */
17: public String getF1() {
18: return f1;
19: }
20:
21: /**
22: * @param f1 The f1 to set.
23: */
24: public void setF1(String f1) {
25: this .f1 = f1;
26: }
27:
28: /**
29: * @return Returns the role.
30: */
31: public Role getRole() {
32: return role;
33: }
34:
35: /**
36: * @param role The role to set.
37: */
38: public void setRole(Role role) {
39: this.role = role;
40: }
41: }
|