01: package net.sourceforge.pmd.util.viewer;
02:
03: import net.sourceforge.pmd.jaxen.MatchesFunction;
04: import net.sourceforge.pmd.jaxen.TypeOfFunction;
05: import net.sourceforge.pmd.util.viewer.gui.MainFrame;
06:
07: /**
08: * viewer's starter
09: *
10: * @author Boris Gruschko ( boris at gruschko.org )
11: * @version $Id: Viewer.java 5449 2007-08-09 14:21:16Z allancaplan $
12: */
13: public class Viewer {
14: public static void main(String[] args) {
15: MatchesFunction.registerSelfInSimpleContext();
16: TypeOfFunction.registerSelfInSimpleContext();
17: new MainFrame();
18: }
19: }
|