Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/templates/AbstractTemplatesPage.java')
-rw-r--r--org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/templates/AbstractTemplatesPage.java17
1 files changed, 11 insertions, 6 deletions
diff --git a/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/templates/AbstractTemplatesPage.java b/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/templates/AbstractTemplatesPage.java
index 25f34361f47..12bdb29f556 100644
--- a/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/templates/AbstractTemplatesPage.java
+++ b/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/templates/AbstractTemplatesPage.java
@@ -552,13 +552,18 @@ public abstract class AbstractTemplatesPage extends Page implements ITemplatesPa
/**
* Creates and opens a dialog to edit the given template.
- * <p
- * Subclasses may override this method to provide a custom dialog.</p>
+ * <p>
+ * Subclasses may override this method to provide a custom dialog.
+ * </p>
*
- * @param template the template being edited
- * @param edit <code>true</code> if the dialog allows editing
- * @param isNameModifiable <code>true</code> if the template name may be modified
- * @return the created or modified template, or <code>null</code> if the editing failed
+ * @param template
+ * the template being edited
+ * @param edit
+ * <code>true</code> if the dialog allows editing
+ * @param isNameModifiable
+ * <code>true</code> if the template name may be modified
+ * @return the created or modified template, or <code>null</code> if the
+ * editing failed
*/
protected Template editTemplate(Template template, boolean edit, boolean isNameModifiable) {
EditTemplateDialog dialog= new EditTemplateDialog(getShell(), template, edit, isNameModifiable, getContextTypeRegistry());

Back to the top