01: package com.metaboss.sdlctools.models.metabossmodel;
02:
03: /**
04: * ModelElementAttachment object instance interface.
05: */
06: public interface ModelElementAttachment extends
07: com.metaboss.sdlctools.models.metabossmodel.ModelElement {
08: /**
09: * Returns the value of reference element.
10: * @return Value of reference element.
11: */
12: public com.metaboss.sdlctools.models.metabossmodel.ModelElement getElement();
13:
14: /**
15: * Sets the value of reference element. See {@link #getElement} for description
16: * on the reference.
17: * @param newValue New value to be set.
18: */
19: public void setElement(
20: com.metaboss.sdlctools.models.metabossmodel.ModelElement newValue);
21: }
|