mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-04 23:05:47 +02:00
Fixed a typo.
This commit is contained in:
parent
861c9a0a29
commit
7f914e4a6a
2 changed files with 6 additions and 8 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
|
* All rights reserved. This program and the accompanying materials
|
||||||
* are made available under the terms of the Eclipse Public License v1.0
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* which accompanies this distribution, and is available at
|
* which accompanies this distribution, and is available at
|
||||||
|
@ -12,9 +12,9 @@ package org.eclipse.cdt.codan.core.model;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* IProblemReporter - interface to report problems.
|
* IProblemReporter - interface to report problems.
|
||||||
*
|
*
|
||||||
* It is recommented to extend {@link AbstractProblemReporter} instead
|
* It is recommended to extend {@link AbstractProblemReporter} instead
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* <strong>EXPERIMENTAL</strong>. This class or interface has been added as
|
* <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
|
* part of a work in progress. There is no guarantee that this API will
|
||||||
|
@ -30,7 +30,7 @@ public interface IProblemReporter {
|
||||||
/**
|
/**
|
||||||
* Report a problem with "problemId" id on the location determined by "loc",
|
* Report a problem with "problemId" id on the location determined by "loc",
|
||||||
* using problem specific error message customized by args.
|
* using problem specific error message customized by args.
|
||||||
*
|
*
|
||||||
* @param problemId - id of the problem registered with a checker
|
* @param problemId - id of the problem registered with a checker
|
||||||
* @param loc - location object, can be created using
|
* @param loc - location object, can be created using
|
||||||
* getRuntime().getProblemLocationFactory().createProblemLocation
|
* getRuntime().getProblemLocationFactory().createProblemLocation
|
||||||
|
|
|
@ -15,7 +15,6 @@ import org.eclipse.core.runtime.IProgressMonitor;
|
||||||
|
|
||||||
import org.eclipse.cdt.core.dom.ast.IASTTranslationUnit;
|
import org.eclipse.cdt.core.dom.ast.IASTTranslationUnit;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Interface of an object listening to (AST-) reconciling.
|
* Interface of an object listening to (AST-) reconciling.
|
||||||
* Inspired by JDT.
|
* Inspired by JDT.
|
||||||
|
@ -23,7 +22,6 @@ import org.eclipse.cdt.core.dom.ast.IASTTranslationUnit;
|
||||||
* @since 4.0
|
* @since 4.0
|
||||||
*/
|
*/
|
||||||
public interface ICReconcilingListener {
|
public interface ICReconcilingListener {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Called before reconciling is started.
|
* Called before reconciling is started.
|
||||||
*/
|
*/
|
||||||
|
@ -34,7 +32,7 @@ public interface ICReconcilingListener {
|
||||||
*
|
*
|
||||||
* @param ast
|
* @param ast
|
||||||
* the translation unit AST or <code>null</code> if the working
|
* the translation unit AST or <code>null</code> if the working
|
||||||
* copy was consistent or reconcilation has been cancelled
|
* copy was consistent or reconciliation has been cancelled
|
||||||
* @param force
|
* @param force
|
||||||
* flag indicating whether the reconciler was invoked forcefully
|
* flag indicating whether the reconciler was invoked forcefully
|
||||||
* @param progressMonitor
|
* @param progressMonitor
|
||||||
|
|
Loading…
Add table
Reference in a new issue