Package org.eclipse.jst.pagedesigner.tableedit

Examples of org.eclipse.jst.pagedesigner.tableedit.InsertRowColumnAction


    tableMenu.add(action1);

    tableMenu.add(new Separator());

    {
      InsertRowColumnAction insertRowBeforeAction = new InsertRowColumnAction(
          PDPlugin
              .getResourceString("TableActionGroup.Submenu.InsertRowBefore"),//$NON-NLS-1$
          tablePart, cellRow, true, true);
      tableMenu.add(insertRowBeforeAction);

      InsertRowColumnAction insertRowAfterAction = new InsertRowColumnAction(
          PDPlugin
              .getResourceString("TableActionGroup.Submenu.InsertRowAfter"),//$NON-NLS-1$
          tablePart, cellRow, true, false);
      tableMenu.add(insertRowAfterAction);

      tableMenu.add(new Separator());
    }

    {
      InsertRowColumnAction insertColumnBeforeAction = new InsertRowColumnAction(
          PDPlugin
              .getResourceString("TableActionGroup.Submenu.InsertColumnBefore"),//$NON-NLS-1$
          tablePart, cellColumn, true, true);
      tableMenu.add(insertColumnBeforeAction);

      InsertRowColumnAction insertColumnAfterAction = new InsertRowColumnAction(
          PDPlugin
              .getResourceString("TableActionGroup.Submenu.InsertColumnAfter"),//$NON-NLS-1$
          tablePart, cellColumn, true, false);
      tableMenu.add(insertColumnAfterAction);
View Full Code Here


    tableMenu.add(action1);

    tableMenu.add(new Separator());

    {
      InsertRowColumnAction insertRowBeforeAction = new InsertRowColumnAction(
          PDPlugin
              .getResourceString("ElementEdit.Submenu.InsertRowBefore"),//$NON-NLS-1$
          tablePart, cellRow, true, true);
      tableMenu.add(insertRowBeforeAction);

      InsertRowColumnAction insertRowAfterAction = new InsertRowColumnAction(
          PDPlugin
              .getResourceString("ElementEdit.Submenu.InsertRowAfter"),//$NON-NLS-1$
          tablePart, cellRow, true, false);
      tableMenu.add(insertRowAfterAction);

      tableMenu.add(new Separator());
    }

    {
      InsertRowColumnAction insertColumnBeforeAction = new InsertRowColumnAction(
          PDPlugin
              .getResourceString("ElementEdit.Submenu.InsertColumnBefore"),//$NON-NLS-1$
          tablePart, cellColumn, false, true);
      tableMenu.add(insertColumnBeforeAction);

      InsertRowColumnAction insertColumnAfterAction = new InsertRowColumnAction(
          PDPlugin
              .getResourceString("ElementEdit.Submenu.InsertColumnAfter"),//$NON-NLS-1$
          tablePart, cellColumn, false, false);
      tableMenu.add(insertColumnAfterAction);
View Full Code Here

TOP

Related Classes of org.eclipse.jst.pagedesigner.tableedit.InsertRowColumnAction

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.