1 package net.sf.mvnflexreports;
2
3 import java.util.Set;
4 import java.util.TreeSet;
5
6 /***
7 * @author Rémi Flament
8 *
9 */
10 public class RemoteObjectUse {
11
12 private MXMLComponent component;
13
14 private RemoteObject remoteObject;
15
16 private String id;
17
18 private String destination;
19
20 private String remoteObjectType;
21
22 private Set<RemoteObjectMethod> usedMethods = new TreeSet<RemoteObjectMethod>();
23
24 public Set<RemoteObjectMethod> getUsedMethods() {
25 return usedMethods;
26 }
27
28 public void setUsedMethods(Set<RemoteObjectMethod> usedMethods) {
29 this.usedMethods = usedMethods;
30 }
31
32 public MXMLComponent getComponent() {
33 return component;
34 }
35
36 public void setComponent(MXMLComponent component) {
37 this.component = component;
38 }
39
40 public RemoteObject getRemoteObject() {
41 return remoteObject;
42 }
43
44 public void setRemoteObject(RemoteObject remoteObject) {
45 this.remoteObject = remoteObject;
46 }
47
48 public String getId() {
49 return id;
50 }
51
52 public void setId(String id) {
53 this.id = id;
54 }
55
56 public String getDestination() {
57 return destination;
58 }
59
60 public void setDestination(String destination) {
61 this.destination = destination;
62 }
63
64 public String getRemoteObjectType() {
65 return remoteObjectType;
66 }
67
68 public void setRemoteObjectType(String remoteObjectType) {
69 this.remoteObjectType = remoteObjectType;
70 }
71
72 }