Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IColumnPresentation.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IColumnPresentation.java34
1 files changed, 17 insertions, 17 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IColumnPresentation.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IColumnPresentation.java
index 991765351..b20f6f400 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IColumnPresentation.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IColumnPresentation.java
@@ -16,71 +16,71 @@ import org.eclipse.jface.resource.ImageDescriptor;
* Defines the possible set of columns presented in a view for a model.
* A column presentation is customizable per presentation context (view) and
* view input, and is created by an <code>IColumnPresentationFactory</code>.
- *
+ *
* @since 3.2
*/
public interface IColumnPresentation {
-
+
/**
* Initializes this column presentation to be used in the
* given context.
- *
+ *
* @param context Presentation context.
*/
public void init(IPresentationContext context);
-
+
/**
* Disposes this column presentation
*/
public void dispose();
-
+
/**
* Returns an array of all columns supported by this adapter as
* column identifiers.
- *
+ *
* @return column identifiers
*/
public String[] getAvailableColumns();
-
+
/**
* Returns an ordered array of columns that should be displayed initially for
* this presentation as column IDs.
- *
+ *
* @return initial columns to display
*/
public String[] getInitialColumns();
-
+
/**
* Returns the column header for the column with the given identifier.
- *
+ *
* @param id a column identifier included in <code>getColumns()</code>
* @return column header
*/
public String getHeader(String id);
-
+
/**
* Returns the image for the column with the given identifier, or <code>null</code>
- *
+ *
* @param id column id
* @return image descriptor or <code>null</code>
*/
public ImageDescriptor getImageDescriptor(String id);
-
+
/**
* Returns an identifier for this columns presentation.
- * The identifier should be unique per kind of column presentation
+ * The identifier should be unique per kind of column presentation
* (for example, the column presentation for Java stack frames
* in the variables view). Allows visible column information to be
* persisted by the platform.
- *
+ *
* @return identifier
*/
public String getId();
-
+
/**
* Returns whether this column presentation is optional. When a column presentation
* is optional, the user may toggle columns on/off.
- *
+ *
* @return whether this column presentation is optional
*/
public boolean isOptional();

Back to the top