org.afplib.afplib.ImageData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of afplib Show documentation
Show all versions of afplib Show documentation
Java object library able to read and write AFP (Advanced Function Presentation) files.
/**
*/
package org.afplib.afplib;
import org.afplib.base.Triplet;
/**
*
* A representation of the model object 'Image Data'.
*
*
*
* The following features are supported:
*
*
* - {@link org.afplib.afplib.ImageData#getDATA DATA}
*
*
* @see org.afplib.afplib.AfplibPackage#getImageData()
* @model
* @generated
*/
public interface ImageData extends Triplet {
/**
* Returns the value of the 'DATA' attribute.
*
*
*
* mandatory
variable length
*
* @return the value of the 'DATA' attribute.
* @see #setDATA(byte[])
* @see org.afplib.afplib.AfplibPackage#getImageData_DATA()
* @model required="true"
* @generated
*/
byte[] getDATA();
/**
* Sets the value of the '{@link org.afplib.afplib.ImageData#getDATA DATA}' attribute.
*
*
* @param value the new value of the 'DATA' attribute.
* @see #getDATA()
* @generated
*/
void setDATA(byte[] value);
} // ImageData
© 2015 - 2025 Weber Informatics LLC | Privacy Policy