|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
Viewer.java | - | 0% | 0% | 0% |
|
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 starter | |
8 | * | |
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 | 0 | public static void main(String[] args) { |
14 | 0 | MatchesFunction.registerSelfInSimpleContext(); |
15 | 0 | new MainFrame(); |
16 | } | |
17 | } |
|