01: /*
02: * Copyright 2004 JETA Software, Inc. All rights reserved.
03: * JETA SOFTWARE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
04: */
05:
06: package com.jeta.swingbuilder.gui.components.list;
07:
08: public class ItemsViewNames {
09: public static final String ID_ITEMS_TABLE = "items.table"; // javax.swing.JTable
10: public static final String ID_ADD_ITEM = "add.item"; // javax.swing.JButton
11: public static final String ID_EDIT_ITEM = "edit.item"; // javax.swing.JButton
12: public static final String ID_DELETE_ITEM = "delete.item"; // javax.swing.JButton
13: public static final String ID_MOVE_UP = "move.up"; // javax.swing.JButton
14: public static final String ID_MOVE_DOWN = "move.down"; // javax.swing.JButton
15: }
|