mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-23 17:05:26 +02:00
Javadoc adjustments.
This commit is contained in:
parent
1b0fae8b18
commit
cf018dec6c
1 changed files with 11 additions and 13 deletions
|
@ -1,5 +1,5 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2009, 2010 Alena Laskavaia
|
||||
* Copyright (c) 2009, 2010 Alena Laskavaia
|
||||
* 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
|
||||
|
@ -18,32 +18,31 @@ import org.eclipse.core.resources.IResource;
|
|||
* current resource, which allows to manage markers better - i.e. instead of
|
||||
* deleting replace them when needed, and queue markers for insertion instead
|
||||
* of add right away.
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* <strong>EXPERIMENTAL</strong>. This class or interface has been added as part
|
||||
* of a work in progress. There is no guarantee that this API will work or that
|
||||
* it will remain the same.
|
||||
* </p>
|
||||
*
|
||||
*
|
||||
* @since 2.0
|
||||
*/
|
||||
public interface IProblemReporterSessionPersistent extends IProblemReporter {
|
||||
/**
|
||||
* Delete all problems associated with session resource and session checker.
|
||||
* Deletes all problems associated with session resource and session checker.
|
||||
* If "all" is true also delete all problems associated with workspace (and
|
||||
* session checker)
|
||||
*
|
||||
* session checker).
|
||||
*
|
||||
*/
|
||||
public void deleteProblems(boolean all);
|
||||
|
||||
/**
|
||||
* Notify that session is started
|
||||
* Notifies that session is started.
|
||||
*/
|
||||
public void start();
|
||||
|
||||
/**
|
||||
* Notify that session is
|
||||
* ended
|
||||
* Notifies that session is ended.
|
||||
*/
|
||||
public void done();
|
||||
|
||||
|
@ -52,10 +51,9 @@ public interface IProblemReporterSessionPersistent extends IProblemReporter {
|
|||
IResource getResource();
|
||||
|
||||
/**
|
||||
* Create an instance of the object.This is a bit ugly since implemented has
|
||||
* to combine
|
||||
* object itself and factory to this object.
|
||||
*
|
||||
* Create an instance of the object. This is a bit ugly since implemented has
|
||||
* to combine the object itself and factory to this object.
|
||||
*
|
||||
* @param resource
|
||||
* @param checker
|
||||
* @return
|
||||
|
|
Loading…
Add table
Reference in a new issue