org.opencrx.kernel.model1.cci2.StructureField Maven / Gradle / Ivy
// ----------------------------------------------------------------------------
// Instance/Begin
// ----------------------------------------------------------------------------
package org.opencrx.kernel.model1.cci2;
/**
* Class {@code StructureField}
*
* The StructureField class is used to specifiy the fields of a StructureType instance.
*/
@javax.annotation.Generated(
value = "org.openmdx.application.mof.mapping.java.InstanceMapper",
date = "2023-10-28T12:15:35.378430092Z",
comments = "Generated by openMDX 2.18.8 - DO NOT CHANGE MANUALLY"
)
public interface StructureField
extends org.opencrx.kernel.model1.cci2.TypedElement{
// ----------------------------------------------------------------------------
// Instance/AttributeGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the attribute {@code maxLength}.
* @return The non-null value for attribute {@code maxLength}.
*/
public int getMaxLength(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet1_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code maxLength}.
* @param maxLength The non-{@code null} new value for attribute {@code maxLength}.
*/
public void setMaxLength(
int maxLength
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the attribute {@code multiplicity}.
* @return The non-null value for attribute {@code multiplicity}.
*/
public short getMultiplicity(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet1_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code multiplicity}.
* @param multiplicity The non-{@code null} new value for attribute {@code multiplicity}.
*/
public void setMultiplicity(
short multiplicity
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code upperBound}.
* @return The possibly null value for attribute {@code upperBound}.
*/
public java.lang.Integer getUpperBound(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code upperBound}.
* @param upperBound The possibly null new value for attribute {@code upperBound}.
*/
public void setUpperBound(
java.lang.Integer upperBound
);
// ----------------------------------------------------------------------------
// Instance/End
// ----------------------------------------------------------------------------
}