01: package com.metaboss.sdlctools.models.metabossmodel.designlibrarymodel;
02:
03: /**
04: * IncludedReference object instance interface.
05: */
06: public interface IncludedReference extends
07: com.metaboss.sdlctools.models.metabossmodel.ModelElement {
08: /**
09: * Returns the value of attribute modelArchiveURL.
10: * The location of the archive of the model referenced from this one
11: * @return Value of attribute modelArchiveURL.
12: */
13: public java.lang.String getModelArchiveUrl();
14:
15: /**
16: * Sets the value of modelArchiveURL attribute. See {@link #getModelArchiveUrl}
17: * for description on the attribute.
18: * @param newValue New value to be set.
19: */
20: public void setModelArchiveUrl(java.lang.String newValue);
21:
22: /**
23: * Returns the value of reference library.
24: * @return Value of reference library.
25: */
26: public com.metaboss.sdlctools.models.metabossmodel.designlibrarymodel.DesignLibrary getLibrary();
27:
28: /**
29: * Sets the value of reference library. See {@link #getLibrary} for description
30: * on the reference.
31: * @param newValue New value to be set.
32: */
33: public void setLibrary(
34: com.metaboss.sdlctools.models.metabossmodel.designlibrarymodel.DesignLibrary newValue);
35: }
|