KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencrx > kernel > activity1 > cci > ActivityLinkFrom


1 // ----------------------------------------------------------------------------
2
// Instance/IntfBegin
3
// ----------------------------------------------------------------------------
4
//////////////////////////////////////////////////////////////////////////////
5
//
6
// Name: $Id: JMIAbstractMapper.java,v 1.11 2006/01/21 23:09:07 wfro Exp $
7
// Generated by: openMDX JMI Mapper
8
// Date: Mon Apr 03 11:39:04 CEST 2006
9
//
10
// GENERATED - DO NOT CHANGE MANUALLY
11
//
12
//////////////////////////////////////////////////////////////////////////////
13
package org.opencrx.kernel.activity1.cci;
14
15 public interface ActivityLinkFrom
16   extends
17  org.opencrx.kernel.base.cci.SecureObject,
18  org.openmdx.base.cci.BasicObject {
19 // ----------------------------------------------------------------------------
20
// Instance/IntfAttributeGet1_1
21
// ----------------------------------------------------------------------------
22
/**
23    * Retrieves the value for the attribute <code>activityLinkType</code>.
24    * @return The non-null value for attribute <code>activityLinkType</code>.
25    * @exception JmiException If the value cannot be retrieved for some reason.
26    */

27   public short getActivityLinkType(
28   );
29
30 // ----------------------------------------------------------------------------
31
// Instance/IntfAttributeSet1_1
32
// ----------------------------------------------------------------------------
33
/**
34    * Sets a new value for the attribute <code>activityLinkType</code>.
35    * @param newValue The non-null new value for attribute <code>activityLinkType</code>.
36    * @exception JmiException If the value cannot be set for some reason.
37    */

38   public void setActivityLinkType(
39     short newValue
40   );
41
42 // ----------------------------------------------------------------------------
43
// Instance/IntfAttributeGet0_1
44
// ----------------------------------------------------------------------------
45
/**
46    * @return The possibly null value for attribute <code>description</code>.
47    * @exception JmiException If the value cannot be retrieved for some reason.
48    */

49   public String JavaDoc getDescription(
50   );
51
52 // ----------------------------------------------------------------------------
53
// Instance/IntfAttributeSet0_1
54
// ----------------------------------------------------------------------------
55

56
57   /**
58    * Sets a new value for the attribute <code>description</code>.
59    * @param newValue The possibly null new value for attribute <code>description</code>.
60    * @exception JmiException If the value cannot be set for some reason.
61    */

62   public void setDescription(
63     String JavaDoc newValue
64   );
65
66 // ----------------------------------------------------------------------------
67
// Instance/IntfReferenceGet0_1NoQualifier
68
// ----------------------------------------------------------------------------
69
/**
70    * Retrieves the value for the optional reference <code>linkFrom</code>.
71    * @return The possibly null value for this reference.
72    * @exception JmiException If the value cannot be retrieved for some reason.
73    */

74   public org.opencrx.kernel.activity1.cci.Activity getLinkFrom(
75   );
76
77 // ----------------------------------------------------------------------------
78
// Instance/IntfReferenceSetNoQualifier
79
// ----------------------------------------------------------------------------
80
/**
81    * Sets a new value for the reference <code>linkFrom</code>.
82    * @param newValue The non-null new value for this reference.
83    * @exception JmiException If the value cannot be set for some reason.
84    */

85   public void setLinkFrom(
86     org.opencrx.kernel.activity1.cci.Activity newValue
87   );
88
89 // ----------------------------------------------------------------------------
90
// Instance/IntfReferenceRemoveOptional
91
// ----------------------------------------------------------------------------
92
/**
93    * Removes the value for the optional reference <code>linkFrom</code>.
94    * @exception JmiException If the value cannot be removed for some reason.
95    */

96   public void removeLinkFrom (
97   );
98
99 // ----------------------------------------------------------------------------
100
// Instance/IntfAttributeGet1_1
101
// ----------------------------------------------------------------------------
102
/**
103    * Retrieves the value for the attribute <code>name</code>.
104    * @return The non-null value for attribute <code>name</code>.
105    * @exception JmiException If the value cannot be retrieved for some reason.
106    */

107   public String JavaDoc getName(
108   );
109
110 // ----------------------------------------------------------------------------
111
// Instance/IntfAttributeSet1_1
112
// ----------------------------------------------------------------------------
113
/**
114    * Sets a new value for the attribute <code>name</code>.
115    * @param newValue The non-null new value for attribute <code>name</code>.
116    * @exception JmiException If the value cannot be set for some reason.
117    */

118   public void setName(
119     String JavaDoc newValue
120   );
121
122 // ----------------------------------------------------------------------------
123
// Instance/IntfEnd.vm
124
// ----------------------------------------------------------------------------
125
}
126
Popular Tags