org.omg.model1.jmi1.Element Maven / Gradle / Ivy
// ----------------------------------------------------------------------------
// Instance/Begin
// ----------------------------------------------------------------------------
//////////////////////////////////////////////////////////////////////////////
//
// Name: $Id: AbstractMapper.java,v 1.10 2011/07/08 13:20:51 wfro Exp $
// Generated by: openMDX Java Mapper
// Date: Mon Mar 09 17:04:35 CET 2020
//
// GENERATED - DO NOT CHANGE MANUALLY
//
//////////////////////////////////////////////////////////////////////////////
package org.omg.model1.jmi1;
/**
* Abstract class Element
*
* Element classifies the elementary, atomic constructs of models. Element is the root Class within the MOF Model.
*/
public interface Element
extends org.omg.model1.cci2.Element,
org.openmdx.base.jmi1.BasicObject{
// ----------------------------------------------------------------------------
// Instance/ReferenceGetx_1NoQualifier
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the reference container
.
* @return The – possibly null
– value for this reference.
*/
public org.omg.model1.jmi1.Namespace getContainer(
);
// ----------------------------------------------------------------------------
// Instance/ReferenceSetNoQualifier
// ----------------------------------------------------------------------------
/**
* Sets a new value for the reference container
.
* @param container The new – possibly null
– value for this reference.
*/
public void setContainer(
org.omg.model1.cci2.Namespace container
);
// ----------------------------------------------------------------------------
// Instance/ReferenceGetx_1NoQualifier
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the reference segment
.
* @return The non-null
value for this reference.
*/
public org.omg.model1.jmi1.Segment getSegment(
);
// ----------------------------------------------------------------------------
// Instance/AttributeGetSet
// ----------------------------------------------------------------------------
/**
* Retrieves a set containing all the elements for the attribute stereotype
.
* @return A set containing all elements for this attribute.
*/
public java.util.Set getStereotype(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSetSet
// ----------------------------------------------------------------------------
/**
* Clears 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
// ----------------------------------------------------------------------------
}