/** * Դ�������ƣ�IActionIDConstant.java * �������Ȩ���������ӹɷ����޹�˾ ��Ȩ���� * ϵͳ���ƣ�JRES Studio * ģ�����ƣ�com.hundsun.ares.studio.jres.ui * ����˵����JRES Studio�Ľ���չ�ֻ�����ܺͱ༭��ع��� * ����ĵ��� * ���ߣ� */ package com.hundsun.ares.studio.ui.editor.actions; /** * @author gongyf * */ public interface IActionIDConstant { /** * ColumnViewer�������Ŀ */ String CV_ADD = "cv.add"; /** * ColumnViewer�IJ�����Ŀ */ String CV_INSERT = "cv.insert"; /** * ColumnViewer��ɾ����Ŀ */ String CV_DELETE = "cv.delete"; /** * ColumnViewer������(����) */ String CV_MOVE_TOP = "cv.movetop"; /** * ColumnViewer������ */ String CV_MOVE_UP = "cv.moveup"; /** * ColumnViewer������ */ String CV_MOVE_DOWN = "cv.movedown"; /** * ColumnViewer������(����) */ String CV_MOVE_BOTTOM = "cv.movebottom"; /** * ������ */ String CV_VALIDATE = "cv.validate"; /** * ���� */ String CV_COPY = "cv.copy"; /** * ճ�� */ String CV_PASTE = "cv.paste"; /** * ˢ�� */ String CV_REFRESH = "cv.refersh"; }