1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 18:26:01 +02:00

Fix from Hoda

IStructure extends IVariableDeclaration
INamespace extends IParent.
This commit is contained in:
Alain Magloire 2003-04-01 19:51:26 +00:00
parent 13a2fc941c
commit acfaf07e1a
2 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@ package org.eclipse.cdt.core.model;
/** /**
* Represents a package declaration in a C translation unit. * Represents a package declaration in a C translation unit.
*/ */
public interface INamespace extends ICElement, ISourceManipulation, ISourceReference { public interface INamespace extends ICElement, IParent, ISourceManipulation, ISourceReference {
/** /**
* Returns the name of the package the statement refers to. * Returns the name of the package the statement refers to.
* This is a handle-only method. * This is a handle-only method.

View file

@ -8,7 +8,7 @@ package org.eclipse.cdt.core.model;
/** /**
* Represent struct(ure), class or union. * Represent struct(ure), class or union.
*/ */
public interface IStructure extends IInheritance, IParent, IDeclaration { public interface IStructure extends IInheritance, IParent, IVariableDeclaration {
//public String instantiatesTemplate(); //public String instantiatesTemplate();
public IField getField(String name); public IField getField(String name);