Lines Matching defs:data
40 * initialization data. </ul>
70 * @serial the object's initialization data
72 private MarshalledObject<?> data;
86 * information is <code>data</code>. If this form of the constructor
105 * @param data the object's initialization (activation) data contained
112 MarshalledObject<?> data)
116 className, location, data, false);
123 * information is <code>data</code>. If this form of the constructor
136 * @param data the object's initialization (activation) data contained
149 MarshalledObject<?> data,
154 className, location, data, restart);
161 * information is <code>data</code>. All objects with the same
176 * @param data the object's initialization (activation) data contained
184 MarshalledObject<?> data)
186 this(groupID, className, location, data, false);
193 * information is <code>data</code>. All objects with the same
202 * @param data the object's initialization (activation) data contained
216 MarshalledObject<?> data,
224 this.data = data;
263 * data for the object specified by this descriptor.
264 * @return the object specific "initialization" data
268 return data;
308 (data == null ? desc.data == null :
309 data.equals(desc.data)) &&
332 (data == null
334 : data.hashCode() << 1) ^