Example #1
0
 ///
 ///          <summary> * (9) get attribute PlateUsage </summary>
 ///          * <returns> the value of the attribute </returns>
 ///
 public virtual EnumPlateUsage getPlateUsage()
 {
     return(EnumPlateUsage.getEnum(getAttribute(AttributeName.PLATEUSAGE, null, "Original")));
 }
Example #2
0
 static JDFAutoCylinderPosition()
 {
     atrInfoTable[0] = new AtrInfoTable(AttributeName.PLATEPOSITION, 0x22222111, AttributeInfo.EnumAttributeType.XYPairRangeList, null, null);
     atrInfoTable[1] = new AtrInfoTable(AttributeName.PLATETYPE, 0x33333111, AttributeInfo.EnumAttributeType.enumeration, EnumPlateType.getEnum(0), "Content");
     atrInfoTable[2] = new AtrInfoTable(AttributeName.PLATEUSAGE, 0x33333111, AttributeInfo.EnumAttributeType.enumeration, EnumPlateUsage.getEnum(0), "Original");
     atrInfoTable[3] = new AtrInfoTable(AttributeName.DEVICEMODULEINDEX, 0x22222111, AttributeInfo.EnumAttributeType.integer, null, null);
 }
Example #3
0
 //         ---------------------------------------------------------------------
 //        Methods for Attribute PlateUsage
 //        ---------------------------------------------------------------------
 ///
 ///          <summary> * (5) set attribute PlateUsage </summary>
 ///          * <param name="enumVar">: the enumVar to set the attribute to </param>
 ///
 public virtual void setPlateUsage(EnumPlateUsage enumVar)
 {
     setAttribute(AttributeName.PLATEUSAGE, enumVar == null ? null : enumVar.getName(), null);
 }