org.opencrx.kernel.base.cci2.Chart Maven / Gradle / Ivy
// ----------------------------------------------------------------------------
// Instance/Begin
// ----------------------------------------------------------------------------
package org.opencrx.kernel.base.cci2;
/**
* Abstract class {@code Chart}
*/
@javax.annotation.Generated(
value = "org.openmdx.application.mof.mapping.java.InstanceMapper",
date = "2023-10-28T12:15:35.801417320Z",
comments = "Generated by openMDX 2.18.8 - DO NOT CHANGE MANUALLY"
)
public interface Chart
{
// ----------------------------------------------------------------------------
// Instance/AttributeGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the attribute {@code chart}.
* @return The non-null value for attribute {@code chart}.
*/
public byte[] getChart(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet1_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code chart}.
*
* This attribute is not changeable, i.e. its value can be set as long as the object is TRANSIENT or NEW
* @param chart The non-{@code null} new value for attribute {@code chart}.
*/
public void setChart(
byte[] chart
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the attribute {@code chartMimeType}.
* @return The non-null value for attribute {@code chartMimeType}.
*/
public java.lang.String getChartMimeType(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet1_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code chartMimeType}.
*
* This attribute is not changeable, i.e. its value can be set as long as the object is TRANSIENT or NEW
* @param chartMimeType The non-{@code null} new value for attribute {@code chartMimeType}.
*/
public void setChartMimeType(
java.lang.String chartMimeType
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the attribute {@code chartName}.
* @return The non-null value for attribute {@code chartName}.
*/
public java.lang.String getChartName(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet1_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code chartName}.
*
* This attribute is not changeable, i.e. its value can be set as long as the object is TRANSIENT or NEW
* @param chartName The non-{@code null} new value for attribute {@code chartName}.
*/
public void setChartName(
java.lang.String chartName
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the attribute {@code description}.
* @return The non-null value for attribute {@code description}.
*/
public java.lang.String getDescription(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet1_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code description}.
*
* This attribute is not changeable, i.e. its value can be set as long as the object is TRANSIENT or NEW
* @param description The non-{@code null} new value for attribute {@code description}.
*/
public void setDescription(
java.lang.String description
);
// ----------------------------------------------------------------------------
// Instance/End
// ----------------------------------------------------------------------------
}