1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 01:15:29 +02:00

Indentation.

This commit is contained in:
Alain Magloire 2003-02-02 01:02:53 +00:00
parent 99db2be316
commit 04aae18732
3 changed files with 3 additions and 3 deletions

View file

@ -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,

View file

@ -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;
} }

View file

@ -18,7 +18,7 @@ public class VariableDeclaration extends SourceManipulation implements IVariable
return ""; return "";
} }
public int getAccesControl() { public int getAccessControl() {
return 0; return 0;
} }