All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opencrx.kernel.model1.cci2.GeneralizableElement Maven / Gradle / Ivy

The newest version!
// ----------------------------------------------------------------------------
// Instance/Begin
// ----------------------------------------------------------------------------
package org.opencrx.kernel.model1.cci2;

/**
 * Abstract class {@code GeneralizableElement}
 *

* The GeneralizableElement Class classifies and characterizes Elements that can be generalized through supertyping and specialized through subtyping. A GeneralizableElement inherits the features of each of its supertypes, the features of the supertypes of the immediate supertypes, and so on (in other words all the features of the transitive closure of all the supertypes of the GeneralizableElement). *

* When a GeneralizableElement inherits a feature, that feature name effectively becomes part of the namespace for the GeneralizableElement and the feature is considered part of the extended namespace of the Namespace. Therefore, a GeneralizableElement cannot have a superclass if it causes an inherited feature to have a namespace collision with its own features [The names of the contents of a GeneralizableElement should not collide with the names of the contents of any direct or indirect supertype.]. *

* To the degree that a GeneralizableElement is defined by its features, the superclass/subclass association defines substitutability. Any instance of a GeneralizableElement can be supplied wherever an instance of a superclass of that GeneralizableElement is expected. * */ @javax.annotation.Generated( value = "org.openmdx.application.mof.mapping.java.InstanceMapper", date = "2023-10-28T12:15:35.372222006Z", comments = "Generated by openMDX 2.18.8 - DO NOT CHANGE MANUALLY" ) public interface GeneralizableElement extends org.opencrx.kernel.model1.cci2.Namespace{ // ---------------------------------------------------------------------------- // Instance/AttributeGet1_1 // ---------------------------------------------------------------------------- /** * Retrieves the value for the attribute {@code isAbstract}. *

* Indicates whether the GeneralizableElement is expected to have instances. When isAbstract is true, any instance that is represented or classified by this GeneralizableElement is additionally an instance of some specialization of this GeneralizableElement. No operation that supports creation of instances of this GeneralizableElement should be available. * @return The non-null value for attribute {@code isAbstract}. */ public boolean isAbstract( ); // ---------------------------------------------------------------------------- // Instance/AttributeSet1_1 // ---------------------------------------------------------------------------- /** * Sets a new value for the attribute {@code isAbstract}. *

* Indicates whether the GeneralizableElement is expected to have instances. When isAbstract is true, any instance that is represented or classified by this GeneralizableElement is additionally an instance of some specialization of this GeneralizableElement. No operation that supports creation of instances of this GeneralizableElement should be available. * @param isAbstract The non-{@code null} new value for attribute {@code isAbstract}. */ public void setAbstract( boolean isAbstract ); // ---------------------------------------------------------------------------- // Instance/ReferenceGet0_nNoQuery // ---------------------------------------------------------------------------- /** * Retrieves the {@code Collection} of objects referenced by {@code supertype}. * @return The {@code Collection} of referenced objects. */ public java.util.List getSupertype( ); // ---------------------------------------------------------------------------- // Instance/AttributeGet1_1 // ---------------------------------------------------------------------------- /** * Retrieves the value for the attribute {@code visibility}. *

* In the future, this Attribute will be used to limit the ability of Elements outside of this GeneralizableElement’s container to depend on it. The rules of visibility of MOF Elements are not currently specified. * @return The non-null value for attribute {@code visibility}. */ public short getVisibility( ); // ---------------------------------------------------------------------------- // Instance/AttributeSet1_1 // ---------------------------------------------------------------------------- /** * Sets a new value for the attribute {@code visibility}. *

* In the future, this Attribute will be used to limit the ability of Elements outside of this GeneralizableElement’s container to depend on it. The rules of visibility of MOF Elements are not currently specified. * @param visibility The non-{@code null} new value for attribute {@code visibility}. */ public void setVisibility( short visibility ); // ---------------------------------------------------------------------------- // Instance/End // ---------------------------------------------------------------------------- }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy