01: package com.metaboss.sdlctools.models.metabossmodel.technologylibrarymodel;
02:
03: /**
04: * StorageTechnology object instance interface.
05: */
06: public interface StorageTechnology extends
07: com.metaboss.sdlctools.models.metabossmodel.ModelElement {
08: /**
09: * Returns the value of attribute implementationGeneratorPackage.
10: * @return Value of attribute implementationGeneratorPackage.
11: */
12: public java.lang.String getImplementationGeneratorPackage();
13:
14: /**
15: * Sets the value of implementationGeneratorPackage attribute. See {@link
16: * #getImplementationGeneratorPackage} for description on the attribute.
17: * @param newValue New value to be set.
18: */
19: public void setImplementationGeneratorPackage(
20: java.lang.String newValue);
21:
22: /**
23: * Returns the value of attribute metadataGeneratorPackage.
24: * @return Value of attribute metadataGeneratorPackage.
25: */
26: public java.lang.String getMetadataGeneratorPackage();
27:
28: /**
29: * Sets the value of metadataGeneratorPackage attribute. See {@link #getMetadataGeneratorPackage}
30: * for description on the attribute.
31: * @param newValue New value to be set.
32: */
33: public void setMetadataGeneratorPackage(java.lang.String newValue);
34:
35: /**
36: * Returns the value of reference technologyLibrary.
37: * @return Value of reference technologyLibrary.
38: */
39: public com.metaboss.sdlctools.models.metabossmodel.technologylibrarymodel.TechnologyLibrary getTechnologyLibrary();
40:
41: /**
42: * Sets the value of reference technologyLibrary. See {@link #getTechnologyLibrary}
43: * for description on the reference.
44: * @param newValue New value to be set.
45: */
46: public void setTechnologyLibrary(
47: com.metaboss.sdlctools.models.metabossmodel.technologylibrarymodel.TechnologyLibrary newValue);
48: }
|