示例#1
0
 ///
 ///          <summary> * (9) get attribute TransformationContext </summary>
 ///          * <returns> the value of the attribute </returns>
 ///
 public virtual EnumTransformationContext getTransformationContext()
 {
     return(EnumTransformationContext.getEnum(getAttribute(AttributeName.TRANSFORMATIONCONTEXT, null, "StackItem")));
 }
示例#2
0
 static JDFAutoCollatingItem()
 {
     atrInfoTable[0]  = new AtrInfoTable(AttributeName.AMOUNT, 0x33333311, AttributeInfo.EnumAttributeType.integer, null, "1");
     atrInfoTable[1]  = new AtrInfoTable(AttributeName.BUNDLEDEPTH, 0x33333311, AttributeInfo.EnumAttributeType.integer, null, null);
     atrInfoTable[2]  = new AtrInfoTable(AttributeName.ORIENTATION, 0x33333311, AttributeInfo.EnumAttributeType.enumeration, EnumOrientation.getEnum(0), null);
     atrInfoTable[3]  = new AtrInfoTable(AttributeName.TRANSFORMATION, 0x33333311, AttributeInfo.EnumAttributeType.matrix, null, null);
     atrInfoTable[4]  = new AtrInfoTable(AttributeName.TRANSFORMATIONCONTEXT, 0x33333311, AttributeInfo.EnumAttributeType.enumeration, EnumTransformationContext.getEnum(0), "StackItem");
     elemInfoTable[0] = new ElemInfoTable(ElementName.COMPONENT, 0x66666611);
     elemInfoTable[1] = new ElemInfoTable(ElementName.MEDIA, 0x66666611);
 }
示例#3
0
 //         ---------------------------------------------------------------------
 //        Methods for Attribute TransformationContext
 //        ---------------------------------------------------------------------
 ///
 ///          <summary> * (5) set attribute TransformationContext </summary>
 ///          * <param name="enumVar">: the enumVar to set the attribute to </param>
 ///
 public virtual void setTransformationContext(EnumTransformationContext enumVar)
 {
     setAttribute(AttributeName.TRANSFORMATIONCONTEXT, enumVar == null ? null : enumVar.getName(), null);
 }