01: package com.metaboss.sdlctools.models.metabossmodel.technologylibrarymodel;
02:
03: /**
04: * TechnologyLibrary object instance interface.
05: */
06: public interface TechnologyLibrary extends
07: com.metaboss.sdlctools.models.metabossmodel.ModelElement {
08: /**
09: * Returns the value of reference enterprise.
10: * @return Value of reference enterprise.
11: */
12: public com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.Enterprise getEnterprise();
13:
14: /**
15: * Sets the value of reference enterprise. See {@link #getEnterprise} for
16: * description on the reference.
17: * @param newValue New value to be set.
18: */
19: public void setEnterprise(
20: com.metaboss.sdlctools.models.metabossmodel.enterprisemodel.Enterprise newValue);
21:
22: /**
23: * Returns the value of reference storageTechnologies.
24: * @return Value of reference storageTechnologies.
25: */
26: public java.util.Collection getStorageTechnologies();
27: }
|