intial version
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.jtidy / src / net / sourceforge / phpdt / tidy / actions / FormatWithJTidyAction.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 FormatWithJTidyAction extends AbstractJTidyObjectAction  {
7         
8         
9         /**
10          * @see IActionDelegate#run(IAction)
11          */
12         public void run(IAction action) {
13                 JTidyConsole.clear();
14                 parseSelection(true);
15                 
16         }
17         
18
19 }