Package com.ipc.oce.metadata.objects

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


    super(aDispatch);
  }

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


    EnumVARIANT<OCEnumValueMetadataObject> enumV = new EnumVARIANT<OCEnumValueMetadataObject>(this) {
     
      @Override
      protected OCEnumValueMetadataObject castToGeneric(JIVariant variant) {
        try {
          OCEnumValueMetadataObject meta = new OCEnumValueMetadataObject(variant);
          return meta;
        } catch (JIException e) {
          throw new RuntimeException(e);
        }
      }
View Full Code Here

TOP

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

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.