示例#1
0
 ///
 ///          <summary> * (9) get attribute Resend </summary>
 ///          * <returns> the value of the attribute </returns>
 ///
 public virtual EnumResend getResend()
 {
     return(EnumResend.getEnum(getAttribute(AttributeName.RESEND, null, null)));
 }
示例#2
0
 static JDFAutoError()
 {
     atrInfoTable[0]  = new AtrInfoTable(AttributeName.ERRORID, 0x22222222, AttributeInfo.EnumAttributeType.string_, null, null);
     atrInfoTable[1]  = new AtrInfoTable(AttributeName.RESEND, 0x33333111, AttributeInfo.EnumAttributeType.enumeration, EnumResend.getEnum(0), null);
     atrInfoTable[2]  = new AtrInfoTable(AttributeName.RETURNCODE, 0x33333311, AttributeInfo.EnumAttributeType.integer, null, null);
     elemInfoTable[0] = new ElemInfoTable(ElementName.ERRORDATA, 0x33333111);
 }
示例#3
0
 //         ---------------------------------------------------------------------
 //        Methods for Attribute Resend
 //        ---------------------------------------------------------------------
 ///
 ///          <summary> * (5) set attribute Resend </summary>
 ///          * <param name="enumVar">: the enumVar to set the attribute to </param>
 ///
 public virtual void setResend(EnumResend enumVar)
 {
     setAttribute(AttributeName.RESEND, enumVar == null ? null : enumVar.getName(), null);
 }