Exemple #1
0
 ///
 ///          <summary> * (9) get attribute OffsetDirection </summary>
 ///          * <returns> the value of the attribute </returns>
 ///
 public virtual EnumOffsetDirection getOffsetDirection()
 {
     return(EnumOffsetDirection.getEnum(getAttribute(AttributeName.OFFSETDIRECTION, null, null)));
 }
Exemple #2
0
 static JDFAutoDisjointing()
 {
     atrInfoTable[0]  = new AtrInfoTable(AttributeName.NUMBER, 0x33333333, AttributeInfo.EnumAttributeType.integer, null, null);
     atrInfoTable[1]  = new AtrInfoTable(AttributeName.OFFSET, 0x33333333, AttributeInfo.EnumAttributeType.XYPair, null, null);
     atrInfoTable[2]  = new AtrInfoTable(AttributeName.OFFSETAMOUNT, 0x33333333, AttributeInfo.EnumAttributeType.integer, null, null);
     atrInfoTable[3]  = new AtrInfoTable(AttributeName.OFFSETDIRECTION, 0x33333333, AttributeInfo.EnumAttributeType.enumeration, EnumOffsetDirection.getEnum(0), null);
     atrInfoTable[4]  = new AtrInfoTable(AttributeName.OVERFOLD, 0x44444443, AttributeInfo.EnumAttributeType.double_, null, null);
     elemInfoTable[0] = new ElemInfoTable(ElementName.IDENTIFICATIONFIELD, 0x33333333);
     elemInfoTable[1] = new ElemInfoTable(ElementName.INSERTSHEET, 0x66666666);
 }
Exemple #3
0
 //         ---------------------------------------------------------------------
 //        Methods for Attribute OffsetDirection
 //        ---------------------------------------------------------------------
 ///
 ///          <summary> * (5) set attribute OffsetDirection </summary>
 ///          * <param name="enumVar">: the enumVar to set the attribute to </param>
 ///
 public virtual void setOffsetDirection(EnumOffsetDirection enumVar)
 {
     setAttribute(AttributeName.OFFSETDIRECTION, enumVar == null ? null : enumVar.getName(), null);
 }