1 package net.sourceforge.pmd.util.viewer.gui;2 3 /**4 * contains action command constants5 *6 * @author Boris Gruschko ( boris at gruschko.org )7 * @version $Id: ActionCommands.java,v 1.7 2006/02/10 14:15:31 tomcopeland Exp $8 */9 10 public interface ActionCommands {11 String COMPILE_ACTION = "Compile";12 String EVALUATE_ACTION = "Evaluate";13 }14