01: package com.metaboss.sdlctools.models.metabossmodel.visualmodel;
02:
03: /**
04: * ServicemodulemayHaveStructuresDiagrams association proxy interface.
05: */
06: public interface ServicemodulemayHaveStructuresDiagrams extends
07: javax.jmi.reflect.RefAssociation {
08: /**
09: * Queries whether a link currently exists between a given pair of instance
10: * objects in the associations link set.
11: * @param servicemodule Value of the first association end.
12: * @param servicemoduleStructuresDiagrams Value of the second association
13: * end.
14: * @return Returns true if the queried link exists.
15: */
16: public boolean exists(
17: com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.Servicemodule servicemodule,
18: com.metaboss.sdlctools.models.metabossmodel.visualmodel.ServicemoduleStructuresDiagram servicemoduleStructuresDiagrams);
19:
20: /**
21: * Queries the instance object that is related to a particular instance object
22: * by a link in the current associations link set.
23: * @param servicemoduleStructuresDiagrams Required value of the second association
24: * end.
25: * @return Related object or <code>null</code> if none exists.
26: */
27: public com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.Servicemodule getServicemodule(
28: com.metaboss.sdlctools.models.metabossmodel.visualmodel.ServicemoduleStructuresDiagram servicemoduleStructuresDiagrams);
29:
30: /**
31: * Queries the instance objects that are related to a particular instance
32: * object by a link in the current associations link set.
33: * @param servicemodule Required value of the first association end.
34: * @return Collection of related objects.
35: */
36: public java.util.Collection getServicemoduleStructuresDiagrams(
37: com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.Servicemodule servicemodule);
38:
39: /**
40: * Creates a link between the pair of instance objects in the associations
41: * link set.
42: * @param servicemodule Value of the first association end.
43: * @param servicemoduleStructuresDiagrams Value of the second association
44: * end.
45: */
46: public boolean add(
47: com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.Servicemodule servicemodule,
48: com.metaboss.sdlctools.models.metabossmodel.visualmodel.ServicemoduleStructuresDiagram servicemoduleStructuresDiagrams);
49:
50: /**
51: * Removes a link between a pair of instance objects in the current associations
52: * link set.
53: * @param servicemodule Value of the first association end.
54: * @param servicemoduleStructuresDiagrams Value of the second association
55: * end.
56: */
57: public boolean remove(
58: com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.Servicemodule servicemodule,
59: com.metaboss.sdlctools.models.metabossmodel.visualmodel.ServicemoduleStructuresDiagram servicemoduleStructuresDiagrams);
60: }
|