Skip to main content
summaryrefslogtreecommitdiffstats
path: root/jsf
diff options
context:
space:
mode:
authorcrogers2010-04-23 15:48:22 +0000
committercrogers2010-04-23 15:48:22 +0000
commit84e45e59c64fa988286172ea8fcb95edbe7c66d2 (patch)
treeecd244044f3144cd227b4d0d07e75c3857a0420c /jsf
parente319d39b903ccfe4e020ceb56c4882d52265c8ce (diff)
downloadwebtools.jsf-84e45e59c64fa988286172ea8fcb95edbe7c66d2.tar.gz
webtools.jsf-84e45e59c64fa988286172ea8fcb95edbe7c66d2.tar.xz
webtools.jsf-84e45e59c64fa988286172ea8fcb95edbe7c66d2.zip
clean up comments
Diffstat (limited to 'jsf')
-rw-r--r--jsf/plugins/org.eclipse.jst.pagedesigner/src/org/eclipse/jst/pagedesigner/dom/EditHelper.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/jsf/plugins/org.eclipse.jst.pagedesigner/src/org/eclipse/jst/pagedesigner/dom/EditHelper.java b/jsf/plugins/org.eclipse.jst.pagedesigner/src/org/eclipse/jst/pagedesigner/dom/EditHelper.java
index dc45cce48..72f763af4 100644
--- a/jsf/plugins/org.eclipse.jst.pagedesigner/src/org/eclipse/jst/pagedesigner/dom/EditHelper.java
+++ b/jsf/plugins/org.eclipse.jst.pagedesigner/src/org/eclipse/jst/pagedesigner/dom/EditHelper.java
@@ -59,9 +59,9 @@ public class EditHelper {
}
/**
- * Move operation position infront of next non-blank and non-transparent
+ * Move operation position in front of next non-blank and non-transparent
* char. The caller should ensure position's container node is not
- * tranparent text node.
+ * transparent text node.
*
* @param position
* @param forward
@@ -99,7 +99,7 @@ public class EditHelper {
}
/**
- * This caret from current operation postion to next position, this method
+ * This caret from current operation position to next position, this method
* will convert DesignPosition in to DOMPosition, then call dom function to
* move dom position. Here we might insert some complex rules to see whether
* move is valid.
@@ -161,8 +161,8 @@ public class EditHelper {
if (name != null
&& (name.equalsIgnoreCase(IHTMLConstants.TAG_BODY)
- || name.equalsIgnoreCase(IHTMLConstants.TAG_HEAD) || name
- .equalsIgnoreCase(IHTMLConstants.TAG_HTML))) {
+ || name.equalsIgnoreCase(IHTMLConstants.TAG_HEAD)
+ || name.equalsIgnoreCase(IHTMLConstants.TAG_HTML))) {
return null;
}
Node parent = node.getParentNode();

Back to the top