Package com.ipc.oce.metadata.objects

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


    super(aDispatch);
  }

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


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

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

     
      @Override
      protected OCCalculationRegisterMetadataObject castToGeneric(JIVariant variant) {

        try {
          return new OCCalculationRegisterMetadataObject(variant);
        } catch (JIException e) {
          throw new RuntimeException(e);
        }
      }
    };
View Full Code Here

TOP

Related Classes of com.ipc.oce.metadata.objects.OCCalculationRegisterMetadataObject

Copyright © 2018 www.massapicom. 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.