intial version
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.jtidy / src / net / sourceforge / phpdt / tidy / actions / ParseWithJTidyAction.java
1 package net.sourceforge.phpdt.tidy.actions;
2
3 import net.sourceforge.phpdt.tidy.JTidyConsole;
4 import org.eclipse.jface.action.IAction;
5
6 public class ParseWithJTidyAction extends AbstractJTidyObjectAction  {
7
8
9         
10         /**
11          * @see IActionDelegate#run(IAction)
12          */
13         public void run(IAction action) {
14                 JTidyConsole.clear();
15                 parseSelection(false);
16         }
17
18         
19
20 }