Example #1
0
 ///
 ///          <summary> * (9) get attribute DescriptionType </summary>
 ///          * <returns> the value of the attribute </returns>
 ///
 public virtual EnumDescriptionType getDescriptionType()
 {
     return(EnumDescriptionType.getEnum(getAttribute(AttributeName.DESCRIPTIONTYPE, null, null)));
 }
Example #2
0
 static JDFAutoFoldingParams()
 {
     atrInfoTable[0]  = new AtrInfoTable(AttributeName.SHEETLAY, 0x33333333, AttributeInfo.EnumAttributeType.enumeration, EnumSheetLay.getEnum(0), "Left");
     atrInfoTable[1]  = new AtrInfoTable(AttributeName.DESCRIPTIONTYPE, 0x44444433, AttributeInfo.EnumAttributeType.enumeration, EnumDescriptionType.getEnum(0), null);
     atrInfoTable[2]  = new AtrInfoTable(AttributeName.FOLDCATALOG, 0x33333333, AttributeInfo.EnumAttributeType.string_, null, null);
     atrInfoTable[3]  = new AtrInfoTable(AttributeName.FOLDSHEETIN, 0x44444443, AttributeInfo.EnumAttributeType.XYPair, null, null);
     elemInfoTable[0] = new ElemInfoTable(ElementName.FOLD, 0x33333331);
 }
Example #3
0
 //         ---------------------------------------------------------------------
 //        Methods for Attribute DescriptionType
 //        ---------------------------------------------------------------------
 ///
 ///          <summary> * (5) set attribute DescriptionType </summary>
 ///          * <param name="enumVar">: the enumVar to set the attribute to </param>
 ///
 public virtual void setDescriptionType(EnumDescriptionType enumVar)
 {
     setAttribute(AttributeName.DESCRIPTIONTYPE, enumVar == null ? null : enumVar.getName(), null);
 }