Examples of OCMetadataEnumCollection


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

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

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
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.