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