org.opencrx.kernel.model1.jmi1.Element Maven / Gradle / Ivy
// ----------------------------------------------------------------------------
// Instance/Begin
// ----------------------------------------------------------------------------
package org.opencrx.kernel.model1.jmi1;
/**
* Abstract class {@code Element}
*
* Element classifies the elementary, atomic constructs of models. Element is the root Class within the MOF Model.
*/
@javax.annotation.Generated(
value = "org.openmdx.application.mof.mapping.java.InstanceMapper",
date = "2023-10-28T12:15:37.714550359Z",
comments = "Generated by openMDX 2.18.8 - DO NOT CHANGE MANUALLY"
)
public interface Element
extends org.opencrx.kernel.model1.cci2.Element,
org.opencrx.kernel.generic.jmi1.CrxObject{
// ----------------------------------------------------------------------------
// Instance/ReferenceGetx_1NoQualifier
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the reference {@code container}.
* @return The —possibly {@code null}— value for this reference.
*/
public org.opencrx.kernel.model1.jmi1.Namespace getContainer(
);
// ----------------------------------------------------------------------------
// Instance/ReferenceSetNoQualifier
// ----------------------------------------------------------------------------
/**
* Sets a new value for the reference {@code container}.
* @param container The new—possibly {@code null}—value for this reference.
*/
public void setContainer(
org.opencrx.kernel.model1.cci2.Namespace container
);
// ----------------------------------------------------------------------------
// Instance/ReferenceGetx_1NoQualifier
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the reference {@code segment}.
* @return The non-{@code null} value for this reference.
*/
public org.opencrx.kernel.model1.jmi1.Segment getSegment(
);
// ----------------------------------------------------------------------------
// Instance/AttributeGetSet
// ----------------------------------------------------------------------------
/**
* Retrieves a set containing all the elements for the attribute {@code stereotype}.
* @return A set containing all elements for this attribute.
*/
public java.util.Set getStereotype(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSetSet
// ----------------------------------------------------------------------------
/**
* Clears {@code stereotype} and adds the members of the given Set.
*
* This method is equivalent to
* set.clear();
* set.addAll(stereotype);
*
* Note: This is an extension to the JMI 1 standard.
In order to remain standard compliant you should use the equivalent code.
* @param stereotype collection to be copied.
*/
public void setStereotype(
java.util.Set stereotype
);
// ----------------------------------------------------------------------------
// Instance/End
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
// Instance/Containment
// ----------------------------------------------------------------------------
}