Examples of OCDocumentNumeratorMetadataObject


Examples of com.ipc.oce.metadata.objects.OCDocumentNumeratorMetadataObject

    super(aDispatch);
  }

  @Override
  public OCDocumentNumeratorMetadataObject get(int i) throws JIException {
    return new OCDocumentNumeratorMetadataObject(super.get(i));
  }
View Full Code Here

Examples of com.ipc.oce.metadata.objects.OCDocumentNumeratorMetadataObject

    return new OCDocumentNumeratorMetadataObject(super.get(i));
  }

  @Override
  public OCDocumentNumeratorMetadataObject find(String objectName) throws JIException {
    return new OCDocumentNumeratorMetadataObject(super.find(objectName));
  }
View Full Code Here

Examples of com.ipc.oce.metadata.objects.OCDocumentNumeratorMetadataObject

    EnumVARIANT<OCDocumentNumeratorMetadataObject> enumV = new EnumVARIANT<OCDocumentNumeratorMetadataObject>(this) {
     
      @Override
      protected OCDocumentNumeratorMetadataObject castToGeneric(JIVariant variant) {
        try {
          return new OCDocumentNumeratorMetadataObject(variant);
        } catch (JIException e) {
          throw new RuntimeException(e);
        }
      }
    };
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.