Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2009-07-29 13:25:50 +0000
committerDani Megert2009-07-29 13:25:50 +0000
commit9d46e8b3e605d12b94582b22a170ff852bb1aa3e (patch)
tree650eacd0f0d7c6b27a7e5d5cfb1ffc4187075a48 /org.eclipse.core.filebuffers
parent779a84870a79652862887aa2e3b9116b00bd49d2 (diff)
downloadeclipse.platform.text-9d46e8b3e605d12b94582b22a170ff852bb1aa3e.tar.gz
eclipse.platform.text-9d46e8b3e605d12b94582b22a170ff852bb1aa3e.tar.xz
eclipse.platform.text-9d46e8b3e605d12b94582b22a170ff852bb1aa3e.zip
Fixed bug 284450: Javadoc corrections for ISynchronizationContext
Diffstat (limited to 'org.eclipse.core.filebuffers')
-rw-r--r--org.eclipse.core.filebuffers/src/org/eclipse/core/filebuffers/ISynchronizationContext.java20
1 files changed, 9 insertions, 11 deletions
diff --git a/org.eclipse.core.filebuffers/src/org/eclipse/core/filebuffers/ISynchronizationContext.java b/org.eclipse.core.filebuffers/src/org/eclipse/core/filebuffers/ISynchronizationContext.java
index 86dc126eed9..8b86daa7681 100644
--- a/org.eclipse.core.filebuffers/src/org/eclipse/core/filebuffers/ISynchronizationContext.java
+++ b/org.eclipse.core.filebuffers/src/org/eclipse/core/filebuffers/ISynchronizationContext.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2005 IBM Corporation and others.
+ * Copyright (c) 2000, 2009 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -11,20 +11,18 @@
package org.eclipse.core.filebuffers;
/**
- * A file buffer manager (see
- * {@link org.eclipse.core.filebuffers.IFileBufferManager}uses a
- * <code>ISynchronizationContext</code> in order to execute commands
- * encapsulated as {@link java.lang.Runnable}. The synchronization context
- * executes the <code>Runnables</code> according to a specific
- * synchronization/execution policy. This could be that the given
- * <code>Runnable</code> is executed in a specific thread or environment or
- * adhere to specific timing constraints. The concrete characteristics of the
- * policy is to be specified by the context implementer.
+ * A file buffer manager (see {@link org.eclipse.core.filebuffers.IFileBufferManager}) uses an
+ * <code>ISynchronizationContext</code> in order to execute commands encapsulated as
+ * {@link java.lang.Runnable}. The synchronization context executes the <code>Runnables</code>
+ * according to a specific synchronization/execution policy. This could be that the given
+ * <code>Runnable</code> is executed in a specific thread or environment or adhere to specific
+ * timing constraints. The concrete characteristics of the policy is to be specified by the context
+ * implementer.
* <p>
* This interface can be implemented by clients. Clients use
* {@link org.eclipse.core.filebuffers.IFileBufferManager#setSynchronizationContext(ISynchronizationContext)}
* to install a particular synchronization context with a file buffer manager.
- *
+ *
* @since 3.0
*/
public interface ISynchronizationContext {

Back to the top