--- /dev/null
+package net.sourceforge.phpdt.tidy.actions;
+
+import net.sourceforge.phpdt.tidy.JTidyConsole;
+import org.eclipse.jface.action.IAction;
+
+public class ParseWithJTidyAction extends AbstractJTidyObjectAction {
+
+
+
+ /**
+ * @see IActionDelegate#run(IAction)
+ */
+ public void run(IAction action) {
+ JTidyConsole.clear();
+ parseSelection(false);
+ }
+
+
+
+}