Package com.ipc.oce.metadata.objects

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


   *
   * @return
   * @throws JIException
   */
  public OCLanguage getDefaultLanguage() throws JIException {
    return new OCLanguage(get("DefaultLanguage"));
  }
View Full Code Here


   * @throws JIException
   */
  public OCLanguage getLanguage() throws JIException {
    JIVariant var = get("Language");
    if (var.getType() != JIVariant.VT_EMPTY) {
      return new OCLanguage(var);
    } else {
      return null;
    }
  }
View Full Code Here

TOP

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

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.