1 package net.sourceforge.pmd.util.viewer; 2 3 import net.sourceforge.pmd.jaxen.MatchesFunction; 4 import net.sourceforge.pmd.jaxen.TypeOfFunction; 5 import net.sourceforge.pmd.util.viewer.gui.MainFrame; 6 7 /** 8 * viewer's starter 9 * 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 }