01: package com.metaboss.sdlctools.models.metabossmodel;
02:
03: /**
04: * ModelVersion object instance interface.
05: * Singleton element which contains version information of the model it is
06: * in. May not be present if the model does not have any specific version
07: * identifier
08: */
09: public interface ModelVersion extends
10: com.metaboss.sdlctools.models.metabossmodel.ModelElement {
11: /**
12: * Returns the value of attribute Identifier.
13: * Any string contaning the version identifier.
14: * @return Value of attribute Identifier.
15: */
16: public java.lang.String getIdentifier();
17:
18: /**
19: * Sets the value of Identifier attribute. See {@link #getIdentifier} for
20: * description on the attribute.
21: * @param newValue New value to be set.
22: */
23: public void setIdentifier(java.lang.String newValue);
24: }
|