X-Git-Url: http://secure.phpeclipse.com
diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/ICompilationUnitDocumentProvider.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/ICompilationUnitDocumentProvider.java
index ec74b34..115130c 100644
--- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/ICompilationUnitDocumentProvider.java
+++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/ICompilationUnitDocumentProvider.java
@@ -24,59 +24,73 @@ import org.eclipse.ui.texteditor.IDocumentProviderExtension3;
/**
* @since 3.0
*/
-public interface ICompilationUnitDocumentProvider extends IDocumentProvider, IDocumentProviderExtension2, IDocumentProviderExtension3 {
-
+public interface ICompilationUnitDocumentProvider extends IDocumentProvider,
+ IDocumentProviderExtension2, IDocumentProviderExtension3 {
+
/**
* Shuts down this provider.
*/
void shutdown();
-
+
/**
* Returns the working copy for the given element.
*
- * @param element the element
+ * @param element
+ * the element
* @return the working copy for the given element
*/
ICompilationUnit getWorkingCopy(Object element);
-
+
/**
- * Saves the content of the given document to the given element. This method has
- * only an effect if it is called when directly or indirectly inside saveDocument
.
+ * Saves the content of the given document to the given element. This method
+ * has only an effect if it is called when directly or indirectly inside
+ * saveDocument
.
*
- * @param monitor the progress monitor
- * @param element the element to which to save
- * @param document the document to save
- * @param overwrite true
if the save should be enforced
+ * @param monitor
+ * the progress monitor
+ * @param element
+ * the element to which to save
+ * @param document
+ * the document to save
+ * @param overwrite
+ * true
if the save should be enforced
*/
- void saveDocumentContent(IProgressMonitor monitor, Object element, IDocument document, boolean overwrite) throws CoreException;
-
+ void saveDocumentContent(IProgressMonitor monitor, Object element,
+ IDocument document, boolean overwrite) throws CoreException;
+
/**
- * Creates a line tracker for the given element. It is of the same kind as the one that would be
- * used for a newly created document for the given element.
+ * Creates a line tracker for the given element. It is of the same kind as
+ * the one that would be used for a newly created document for the given
+ * element.
*
- * @param element the element
+ * @param element
+ * the element
* @return a line tracker for the given element
*/
ILineTracker createLineTracker(Object element);
-
+
/**
* Sets the document provider's save policy.
*
- * @param savePolicy the save policy
+ * @param savePolicy
+ * the save policy
*/
void setSavePolicy(ISavePolicy savePolicy);
-
+
/**
- * Adds a listener that reports changes from all compilation unit annotation models.
+ * Adds a listener that reports changes from all compilation unit annotation
+ * models.
*
- * @param listener the listener
+ * @param listener
+ * the listener
*/
void addGlobalAnnotationModelListener(IAnnotationModelListener listener);
/**
* Removes the listener.
*
- * @param listener the listener
- */
+ * @param listener
+ * the listener
+ */
void removeGlobalAnnotationModelListener(IAnnotationModelListener listener);
}