Examples of OCDocumentMetadataObject


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

    try {
      OCApp application = connection.getApplication();
      // =============
      OCConfigurationMetadataObject config = application.getMetadata();
      OCMetadataDocumentCollection dc = config.getDocuments();
      OCDocumentMetadataObject dmo = null;
      int sz = dc.size();
      for (int i = 0; i < sz; i++) {
        dmo = dc.get(i);
        String typeName = dmo.getFullName();
        lrs.createRowAndSetValues(new Object[] { typeName, // TYPE_NAME
            Integer.valueOf(Types.STRUCT), // DATA_TYPE
            Integer.valueOf(0), // PRECISION
            null, // LITERAL_PREFIX
            null, // LITERAL_SUFFIX
View Full Code Here

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

   * Предоставляет доступ к объекту описания метаданных документа. Другой путь получения того же значения - через свойство глобального контекста Метаданные (OCConfigurationMetadataObject).
   * @return
   * @throws JIException
   */
  public OCDocumentMetadataObject getMetadata() throws JIException{
    return new OCDocumentMetadataObject(super.getMetadata());
  }
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.