Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f6b8c458fcd1a3ac96466dd8d086a68cb0978a2f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package org.eclipse.papyrus.documentation.view.actions;


public class CommandConstants {
    /**
     * Insert a new row to the selected table.
     */
    public static final String INSERT_TABLE_ROW = "insertRow"; //$NON-NLS-1$

    /**
     * Delete a row from the selected table.
     */
    public static final String DELETE_TABLE_ROW = "deleteRow"; //$NON-NLS-1$

    /**
     * Insert a new column to the selected table.
     */
    public static final String INSERT_TABLE_COL = "insertColumn"; //$NON-NLS-1$

    /**
     * Delete a column from the selected table.
     */
    public static final String DELETE_TABLE_COL = "deleteColumn"; //$NON-NLS-1$
}

Back to the top