mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 01:15:29 +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
|
* 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,
|
* 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 interface IVariableDeclaration extends ICElement, ISourceManipulation, ISourceReference {
|
||||||
|
|
||||||
public String getType ();
|
public String getType ();
|
||||||
public int getAccesControl();
|
public int getAccessControl() throws CModelException;
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,7 +18,7 @@ public class VariableDeclaration extends SourceManipulation implements IVariable
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getAccesControl() {
|
public int getAccessControl() {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue