Examples of OCLanguage


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

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

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