All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.afplib.afplib.DIR Maven / Gradle / Ivy

Go to download

Java object library able to read and write AFP (Advanced Function Presentation) files.

There is a newer version: 0.0.15
Show newest version
/**
 */
package org.afplib.afplib;

import org.afplib.base.Triplet;

/**
 * 
 * A representation of the model object 'DIR'.
 * 
 *
 * 

* The following features are supported: *

    *
  • {@link org.afplib.afplib.DIR#getRLENGTH RLENGTH}
  • *
  • {@link org.afplib.afplib.DIR#getRWIDTH RWIDTH}
  • *
  • {@link org.afplib.afplib.DIR#getRWIDTHFRACTION RWIDTHFRACTION}
  • *
*

* * @see org.afplib.afplib.AfplibPackage#getDIR() * @model * @generated */ public interface DIR extends Triplet { /** * Returns the value of the 'RLENGTH' attribute. * * * *

mandatory
fixed length

* * @return the value of the 'RLENGTH' attribute. * @see #setRLENGTH(Integer) * @see org.afplib.afplib.AfplibPackage#getDIR_RLENGTH() * @model required="true" * @generated */ Integer getRLENGTH(); /** * Sets the value of the '{@link org.afplib.afplib.DIR#getRLENGTH RLENGTH}' attribute. * * * @param value the new value of the 'RLENGTH' attribute. * @see #getRLENGTH() * @generated */ void setRLENGTH(Integer value); /** * Returns the value of the 'RWIDTH' attribute. * * * *

optional
fixed length

* * @return the value of the 'RWIDTH' attribute. * @see #setRWIDTH(Integer) * @see org.afplib.afplib.AfplibPackage#getDIR_RWIDTH() * @model * @generated */ Integer getRWIDTH(); /** * Sets the value of the '{@link org.afplib.afplib.DIR#getRWIDTH RWIDTH}' attribute. * * * @param value the new value of the 'RWIDTH' attribute. * @see #getRWIDTH() * @generated */ void setRWIDTH(Integer value); /** * Returns the value of the 'RWIDTHFRACTION' attribute. * * * *

optional
fixed length

* * @return the value of the 'RWIDTHFRACTION' attribute. * @see #setRWIDTHFRACTION(Integer) * @see org.afplib.afplib.AfplibPackage#getDIR_RWIDTHFRACTION() * @model * @generated */ Integer getRWIDTHFRACTION(); /** * Sets the value of the '{@link org.afplib.afplib.DIR#getRWIDTHFRACTION RWIDTHFRACTION}' attribute. * * * @param value the new value of the 'RWIDTHFRACTION' attribute. * @see #getRWIDTHFRACTION() * @generated */ void setRWIDTHFRACTION(Integer value); } // DIR




© 2015 - 2025 Weber Informatics LLC | Privacy Policy