Package com.ipc.oce.metadata.collection

Examples of com.ipc.oce.metadata.collection.OCMetadataEnumCollection


   *
   * @return
   * @throws JIException
   */
  public OCMetadataEnumCollection getEnums() throws JIException {
    return new OCMetadataEnumCollection(get("Enums"));
  }
View Full Code Here


public class JUEnumMetadata extends BasicTest {

  @Test
  public void showEnumMetadata() throws JIException {
    OCConfigurationMetadataObject cfg = app.getMetadata();
    OCMetadataEnumCollection enumCollection = cfg.getEnums();
    for (OCEnumMetadataObject metaEnum : enumCollection) {
      String name = metaEnum.getName();
      name = metaEnum.getFullName();
      System.out.println(name);
      OCMetadataEnumValueCollection enumValCollection = metaEnum.getEnumValues();
View Full Code Here

TOP

Related Classes of com.ipc.oce.metadata.collection.OCMetadataEnumCollection

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.