Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/text/folding')
-rw-r--r--core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/text/folding/ICFoldingPreferenceBlock.java10
-rw-r--r--core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/text/folding/ICFoldingStructureProvider.java4
2 files changed, 7 insertions, 7 deletions
diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/text/folding/ICFoldingPreferenceBlock.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/text/folding/ICFoldingPreferenceBlock.java
index 3bafe2b91ef..8ad42866d72 100644
--- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/text/folding/ICFoldingPreferenceBlock.java
+++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/text/folding/ICFoldingPreferenceBlock.java
@@ -19,26 +19,26 @@ import org.eclipse.swt.widgets.Control;
/**
* Contributors to the <code>org.eclipse.cdt.ui.foldingStructureProvider</code> extension point
- * can specify an implementation of this interface to be displayed on the C/C++ &gt; Editor &gt;
+ * can specify an implementation of this interface to be displayed on the C/C++ &gt; Editor &gt;
* Folding preference page.
* <p>
* Clients may implement this interface.
* </p>
- *
+ *
*/
public interface ICFoldingPreferenceBlock {
/**
* Creates the control that will be displayed on the C/C++ &gt; Editor &gt; Folding
* preference page.
- *
+ *
* @param parent the parent composite to which to add the preferences control
- * @return the control that was added to <code>parent</code>
+ * @return the control that was added to <code>parent</code>
*/
Control createControl(Composite parent);
/**
- * Called after creating the control. Implementations should load the
+ * Called after creating the control. Implementations should load the
* preferences values and update the controls accordingly.
*/
void initialize();
diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/text/folding/ICFoldingStructureProvider.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/text/folding/ICFoldingStructureProvider.java
index dc3bfd53bb3..57b8d4995c3 100644
--- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/text/folding/ICFoldingStructureProvider.java
+++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/text/folding/ICFoldingStructureProvider.java
@@ -26,7 +26,7 @@ import org.eclipse.ui.texteditor.ITextEditor;
* <p>
* Clients may implement this interface.
* </p>
- *
+ *
*/
public interface ICFoldingStructureProvider {
@@ -35,7 +35,7 @@ public interface ICFoldingStructureProvider {
* Implementations should listen to the projection events generated by
* <code>viewer</code> and enable / disable generation of projection
* structure accordingly.
- *
+ *
* @param editor the editor that this provider works on
* @param viewer the projection viewer that displays the annotations created
* by this structure provider

Back to the top