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.java24
1 files changed, 12 insertions, 12 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 7e542cf02..0d5e4ca5a 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
@@ -29,7 +29,7 @@ public interface IPresentationContext {
* Property name used for property change notification when the columns
* in a presentation context change.
*/
- public static final String PROPERTY_COLUMNS = "PROPERTY_COLUMNS"; //$NON-NLS-1$
+ String PROPERTY_COLUMNS = "PROPERTY_COLUMNS"; //$NON-NLS-1$
/**
* Property indicating whether the presentation context is disposed.
@@ -39,7 +39,7 @@ public interface IPresentationContext {
*
* @since 3.6
*/
- public static final String PROPERTY_DISPOSED = "PROPERTY_DISPOSED"; //$NON-NLS-1$
+ String PROPERTY_DISPOSED = "PROPERTY_DISPOSED"; //$NON-NLS-1$
/**
* Returns identifiers of the visible columns in the order
@@ -50,21 +50,21 @@ public interface IPresentationContext {
* @return visible column identifiers or <code>null</code>
* @see IColumnPresentation
*/
- public String[] getColumns();
+ String[] getColumns();
/**
* Registers the given listener for property change notification.
*
* @param listener property listener
*/
- public void addPropertyChangeListener(IPropertyChangeListener listener);
+ void addPropertyChangeListener(IPropertyChangeListener listener);
/**
* Unregisters the given listener from property change notification.
*
* @param listener property listener.
*/
- public void removePropertyChangeListener(IPropertyChangeListener listener);
+ void removePropertyChangeListener(IPropertyChangeListener listener);
/**
* Returns the id of this presentation context. Usually this is the id of
@@ -74,7 +74,7 @@ public interface IPresentationContext {
* @return id
* @since 3.3
*/
- public String getId();
+ String getId();
/**
* Sets the specified property and notifies listeners of changes.
@@ -82,7 +82,7 @@ public interface IPresentationContext {
* @param property property name
* @param value property value
*/
- public void setProperty(String property, Object value);
+ void setProperty(String property, Object value);
/**
* Returns the property with the specified name or <code>null</code>
@@ -91,13 +91,13 @@ public interface IPresentationContext {
* @param property property name
* @return property value or <code>null</code>
*/
- public Object getProperty(String property);
+ Object getProperty(String property);
/**
* Disposes this presentation context. Called by the framework
* when the associated viewer is disposed.
*/
- public void dispose();
+ void dispose();
/**
* Returns all keys of properties currently set in this context,
@@ -106,7 +106,7 @@ public interface IPresentationContext {
* @return keys of all current properties
* @since 3.4
*/
- public String[] getProperties();
+ String[] getProperties();
/**
* Returns the part that this presentation context is associated with.
@@ -116,7 +116,7 @@ public interface IPresentationContext {
* @return IWorkbenchPart or <code>null</code>
* @since 3.6
*/
- public IWorkbenchPart getPart();
+ IWorkbenchPart getPart();
/**
* Returns the window that this presentation context is associated with.
@@ -126,6 +126,6 @@ public interface IPresentationContext {
* @return IWorkbenchWindow or <code>null</code>
* @since 3.6
*/
- public IWorkbenchWindow getWindow();
+ IWorkbenchWindow getWindow();
}

Back to the top