1 package net.sourceforge.pmd.util.viewer;2 3 import net.sourceforge.pmd.jaxen.MatchesFunction;4 import net.sourceforge.pmd.util.viewer.gui.MainFrame;5 6 /**7 * viewer's starter8 *9 * @author Boris Gruschko ( boris at gruschko.org )10 * @version $Id: Viewer.java,v 1.10 2006/02/10 14:26:31 tomcopeland Exp $11 */12 public class Viewer {13 public static void main(String [] args) {14 MatchesFunction.registerSelfInSimpleContext();15 new MainFrame();16 }17 }18