mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +02:00
Adjusted JavaDoc.
This commit is contained in:
parent
db27a94a9e
commit
25b1d6d57e
2 changed files with 6 additions and 3 deletions
|
@ -436,9 +436,10 @@ public abstract class PDOMBinding extends PDOMNamedNode implements IPDOMBinding
|
|||
}
|
||||
|
||||
/**
|
||||
* The binding is reused by a declaration or definition, we may need to update modifiers.
|
||||
* The binding is reused by a declaration or definition, update the binding, e.g. modifiers,
|
||||
* with the new information.
|
||||
*
|
||||
* @param point the point of instantiation for name lookups
|
||||
* @throws CoreException
|
||||
*/
|
||||
public void update(PDOMLinkage linkage, IBinding newBinding, IASTNode point) throws CoreException {
|
||||
}
|
||||
|
|
|
@ -21,7 +21,6 @@ import org.eclipse.core.runtime.CoreException;
|
|||
* Interface for template parameters stored in the index.
|
||||
*/
|
||||
public interface IPDOMCPPTemplateParameter extends IInternalPDOMNode, ICPPTemplateParameter {
|
||||
|
||||
IPDOMCPPTemplateParameter[] EMPTY_ARRAY = {};
|
||||
|
||||
/**
|
||||
|
@ -30,6 +29,9 @@ public interface IPDOMCPPTemplateParameter extends IInternalPDOMNode, ICPPTempla
|
|||
*/
|
||||
void configure(ICPPTemplateParameter templateParameter);
|
||||
|
||||
/**
|
||||
* @see org.eclipse.cdt.internal.core.pdom.dom.PDOMBinding#update(PDOMLinkage, IBinding, IASTNode)
|
||||
*/
|
||||
void update(PDOMLinkage linkage, IBinding newBinding, IASTNode point) throws CoreException;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue