1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2012-08-15 16:38:46 -07:00
parent 3d025cec9d
commit 492ad5e111

View file

@ -24,7 +24,7 @@ public interface IProblemBinding extends IBinding, IScope, IType, ISemanticProbl
public IASTNode getASTNode(); public IASTNode getASTNode();
/** /**
* Returns the file name this problem occurred in, or <code>null</code> if it is unknown. * Returns the file name this problem occurred in, or {@code null} if it is unknown.
*/ */
public String getFileName(); public String getFileName();
@ -38,9 +38,7 @@ public interface IProblemBinding extends IBinding, IScope, IType, ISemanticProbl
* to this problem binding, but rejected for some reason. * to this problem binding, but rejected for some reason.
* @return an array of candidate bindings. * @return an array of candidate bindings.
* *
* This method is experimental. Clients calling this method should expect * @since 5.1
* possible changes.
* @since 5.1 experimental
*/ */
public IBinding[] getCandidateBindings(); public IBinding[] getCandidateBindings();
@ -70,6 +68,4 @@ public interface IProblemBinding extends IBinding, IScope, IType, ISemanticProbl
*/ */
@Deprecated @Deprecated
public static final int LAST_PROBLEM = 0x00E; public static final int LAST_PROBLEM = 0x00E;
} }