1) Added missing strings for italic, underline and strike through.
[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
5 import org.eclipse.jface.action.IAction;
6
7 public class FormatWithJTidyAction extends AbstractJTidyObjectAction  {
8         
9         
10         /**
11          * @see IActionDelegate#run(IAction)
12          */
13         public void run(IAction action) {
14                 JTidyConsole.clear();
15                 parseSelection(true);
16                 
17         }
18         
19
20 }