Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2015-02-26 23:24:48 +0000
committerLars Vogel2015-03-08 08:21:56 +0000
commit734e359e9ca835525a4b653fd2e13d7126e822e9 (patch)
tree9bdfe3783251df47321ec01ecbb1eda5313974f1 /bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TreeViewerColumn.java
parent81e1214db9b70523c4166e4f9072db20c2ba34ca (diff)
downloadeclipse.platform.ui-734e359e9ca835525a4b653fd2e13d7126e822e9.tar.gz
eclipse.platform.ui-734e359e9ca835525a4b653fd2e13d7126e822e9.tar.xz
eclipse.platform.ui-734e359e9ca835525a4b653fd2e13d7126e822e9.zip
Bug 461005 - Fix whitespace issues in org.eclipse.jface
Change-Id: I31091ad8efc2802967ff5da4bbcc909675126174 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
Diffstat (limited to 'bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TreeViewerColumn.java')
-rw-r--r--bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TreeViewerColumn.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TreeViewerColumn.java b/bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TreeViewerColumn.java
index 3da39871059..70203684da4 100644
--- a/bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TreeViewerColumn.java
+++ b/bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TreeViewerColumn.java
@@ -17,9 +17,9 @@ import org.eclipse.swt.widgets.TreeColumn;
/**
* ViewerColumn implementation for TreeViewer to enable column-specific label
* providers and editing support.
- *
+ *
* @since 3.3
- *
+ *
*/
public final class TreeViewerColumn extends ViewerColumn {
private TreeColumn column;
@@ -28,7 +28,7 @@ public final class TreeViewerColumn extends ViewerColumn {
* Creates a new viewer column for the given {@link TreeViewer} on a new
* {@link TreeColumn} with the given style bits. The column is inserted at
* the given index into the list of columns.
- *
+ *
* @param viewer
* the tree viewer to which this column belongs
* @param style
@@ -44,7 +44,7 @@ public final class TreeViewerColumn extends ViewerColumn {
* Creates a new viewer column for the given {@link TreeViewer} on a new
* {@link TreeColumn} with the given style bits. The column is added at the
* end of the list of columns.
- *
+ *
* @param viewer
* the tree viewer to which this column belongs
* @param style
@@ -61,7 +61,7 @@ public final class TreeViewerColumn extends ViewerColumn {
/**
* Creates a new viewer column for the given {@link TreeViewer} on the given
* {@link TreeColumn}.
- *
+ *
* @param viewer
* the tree viewer to which this column belongs
* @param column
@@ -71,7 +71,7 @@ public final class TreeViewerColumn extends ViewerColumn {
super(viewer, column);
this.column = column;
}
-
+
private static TreeColumn createColumn(Tree table, int style, int index) {
if (index >= 0) {
return new TreeColumn(table, style, index);

Back to the top