mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-23 08:55:25 +02:00
Indentation.
This commit is contained in:
parent
99db2be316
commit
04aae18732
3 changed files with 3 additions and 3 deletions
|
@ -8,7 +8,7 @@ package org.eclipse.cdt.core.model;
|
|||
/**
|
||||
* Represents the declaration method of a class
|
||||
*/
|
||||
public interface IMethodDeclaration extends IMember {
|
||||
public interface IMethodDeclaration extends IMember, IFunctionDeclaration {
|
||||
|
||||
/**
|
||||
* Returns the type signatures of the exceptions this method throws,
|
||||
|
|
|
@ -11,5 +11,5 @@ package org.eclipse.cdt.core.model;
|
|||
public interface IVariableDeclaration extends ICElement, ISourceManipulation, ISourceReference {
|
||||
|
||||
public String getType ();
|
||||
public int getAccesControl();
|
||||
public int getAccessControl() throws CModelException;
|
||||
}
|
||||
|
|
|
@ -18,7 +18,7 @@ public class VariableDeclaration extends SourceManipulation implements IVariable
|
|||
return "";
|
||||
}
|
||||
|
||||
public int getAccesControl() {
|
||||
public int getAccessControl() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue