Package org.openntf.domino

Examples of org.openntf.domino.ViewColumn


   * @see org.openntf.domino.View#createColumn(int, java.lang.String)
   */
  @Override
  public ViewColumn createColumn(final int position, final String columnTitle) {
    try {
      ViewColumn result = fromLotus(getDelegate().createColumn(position, columnTitle), ViewColumn.SCHEMA, this);
      flushCaches();
      return result;
    } catch (NotesException e) {
      DominoUtils.handleException(e);
    }
View Full Code Here


   * @see org.openntf.domino.View#createColumn(int, java.lang.String, java.lang.String)
   */
  @Override
  public ViewColumn createColumn(final int position, final String columnTitle, final String formula) {
    try {
      ViewColumn result = fromLotus(getDelegate().createColumn(position, columnTitle, formula), ViewColumn.SCHEMA, this);
      flushCaches();
      return result;
    } catch (NotesException e) {
      DominoUtils.handleException(e);
    }
View Full Code Here

TOP

Related Classes of org.openntf.domino.ViewColumn

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.