01: package net.sourceforge.pmd.util.viewer.gui;
02:
03: /**
04: * contains action command constants
05: *
06: * @author Boris Gruschko ( boris at gruschko.org )
07: * @version $Id: ActionCommands.java 4217 2006-02-10 14:15:31Z tomcopeland $
08: */
09:
10: public interface ActionCommands {
11: String COMPILE_ACTION = "Compile";
12: String EVALUATE_ACTION = "Evaluate";
13: }
|