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/IPresentationContext.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IPresentationContext.java154
1 files changed, 77 insertions, 77 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IPresentationContext.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IPresentationContext.java
index 4cc72bfe2..bc411b429 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IPresentationContext.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IPresentationContext.java
@@ -44,91 +44,91 @@ public interface IPresentationContext {
*/
String PROPERTY_DISPOSED = "PROPERTY_DISPOSED"; //$NON-NLS-1$
- /**
- * Returns identifiers of the visible columns in the order
- * labels should be provided, or <code>null</code> if columns
- * are not being displayed. Label providers use this
- * information.
- *
- * @return visible column identifiers or <code>null</code>
- * @see IColumnPresentation
- */
- String[] getColumns();
+ /**
+ * Returns identifiers of the visible columns in the order
+ * labels should be provided, or <code>null</code> if columns
+ * are not being displayed. Label providers use this
+ * information.
+ *
+ * @return visible column identifiers or <code>null</code>
+ * @see IColumnPresentation
+ */
+ String[] getColumns();
- /**
- * Registers the given listener for property change notification.
- *
- * @param listener property listener
- */
- void addPropertyChangeListener(IPropertyChangeListener listener);
+ /**
+ * Registers the given listener for property change notification.
+ *
+ * @param listener property listener
+ */
+ void addPropertyChangeListener(IPropertyChangeListener listener);
- /**
- * Unregisters the given listener from property change notification.
- *
- * @param listener property listener.
- */
- void removePropertyChangeListener(IPropertyChangeListener listener);
+ /**
+ * Unregisters the given listener from property change notification.
+ *
+ * @param listener property listener.
+ */
+ void removePropertyChangeListener(IPropertyChangeListener listener);
- /**
- * Returns the id of this presentation context. Usually this is the id of
- * the associated part. However, when no part is associated with this context,
- * the id may exist on its own. Allows for a context that is not tied to a part.
- *
- * @return id
- * @since 3.3
- */
- String getId();
+ /**
+ * Returns the id of this presentation context. Usually this is the id of
+ * the associated part. However, when no part is associated with this context,
+ * the id may exist on its own. Allows for a context that is not tied to a part.
+ *
+ * @return id
+ * @since 3.3
+ */
+ String getId();
- /**
- * Sets the specified property and notifies listeners of changes.
- *
- * @param property property name
- * @param value property value
- */
- void setProperty(String property, Object value);
+ /**
+ * Sets the specified property and notifies listeners of changes.
+ *
+ * @param property property name
+ * @param value property value
+ */
+ void setProperty(String property, Object value);
- /**
- * Returns the property with the specified name or <code>null</code>
- * if none.
- *
- * @param property property name
- * @return property value or <code>null</code>
- */
- Object getProperty(String property);
+ /**
+ * Returns the property with the specified name or <code>null</code>
+ * if none.
+ *
+ * @param property property name
+ * @return property value or <code>null</code>
+ */
+ Object getProperty(String property);
- /**
- * Disposes this presentation context. Called by the framework
- * when the associated viewer is disposed.
- */
- void dispose();
+ /**
+ * Disposes this presentation context. Called by the framework
+ * when the associated viewer is disposed.
+ */
+ void dispose();
- /**
- * Returns all keys of properties currently set in this context,
- * possibly an empty collection
- *
- * @return keys of all current properties
- * @since 3.4
- */
- String[] getProperties();
+ /**
+ * Returns all keys of properties currently set in this context,
+ * possibly an empty collection
+ *
+ * @return keys of all current properties
+ * @since 3.4
+ */
+ String[] getProperties();
- /**
- * Returns the part that this presentation context is associated with.
- * May return <code>null</code> if the presentation is not associated
- * with a part.
- *
- * @return IWorkbenchPart or <code>null</code>
- * @since 3.6
- */
- IWorkbenchPart getPart();
+ /**
+ * Returns the part that this presentation context is associated with.
+ * May return <code>null</code> if the presentation is not associated
+ * with a part.
+ *
+ * @return IWorkbenchPart or <code>null</code>
+ * @since 3.6
+ */
+ IWorkbenchPart getPart();
- /**
- * Returns the window that this presentation context is associated with.
- * May return <code>null</code> if the presentation is not associated
- * with a window.
- *
- * @return IWorkbenchWindow or <code>null</code>
- * @since 3.6
- */
- IWorkbenchWindow getWindow();
+ /**
+ * Returns the window that this presentation context is associated with.
+ * May return <code>null</code> if the presentation is not associated
+ * with a window.
+ *
+ * @return IWorkbenchWindow or <code>null</code>
+ * @since 3.6
+ */
+ IWorkbenchWindow getWindow();
}

Back to the top