org.opencrx.kernel.model1.jmi1.AssociationEnd Maven / Gradle / Ivy
// ----------------------------------------------------------------------------
// Instance/Begin
// ----------------------------------------------------------------------------
package org.opencrx.kernel.model1.jmi1;
/**
* Class {@code AssociationEnd}
*
* An association is composed of two AssociationEnds. Each AssociationEnd defines a Classifier participant in the Association, the role it plays, and constraints on sets of the Classifier instances participating. An instance of an AssociationEnd is a LinkEnd,
* which defines a relationship between a link, in instance of an Association, and an instance of the AssociationEnd's Classifier, provided in its type attribute.
*
*/
@javax.annotation.Generated(
value = "org.openmdx.application.mof.mapping.java.InstanceMapper",
date = "2023-10-28T12:15:37.698186357Z",
comments = "Generated by openMDX 2.18.8 - DO NOT CHANGE MANUALLY"
)
public interface AssociationEnd
extends org.opencrx.kernel.model1.cci2.AssociationEnd,
org.opencrx.kernel.model1.jmi1.TypedElement{
// ----------------------------------------------------------------------------
// Instance/AttributeGetList
// ----------------------------------------------------------------------------
/**
* Retrieves a list containing all the elements for the attribute {@code qualifierName}.
* @return A list containing all elements for this attribute.
*/
public java.util.List getQualifierName(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSetList
// ----------------------------------------------------------------------------
/**
* Clears {@code qualifierName} and adds the members of the given List.
*
* This method is equivalent to
* list.clear();
* list.addAll(qualifierName);
*
* Note: This is an extension to the JMI 1 standard.
In order to remain standard compliant you should use the equivalent code.
* @param qualifierName collection to be copied.
*/
public void setQualifierName(
java.util.List qualifierName
);
// ----------------------------------------------------------------------------
// Instance/End
// ----------------------------------------------------------------------------
}