blob: e66fd371bbc677f3824f2c9d09f824a1b8d035b6 [file] [log] [blame]
package org.eclipse.cdt.core.model;
/*
* (c) Copyright QNX Software Systems Ltd. 2002.
* All Rights Reserved.
*/
/**
* Represent struct(ure), class or union.
*/
public interface IStructure extends IInheritance, IParent, IVariableDeclaration {
public IField getField(String name);
public IField[] getFields();
public IMethodDeclaration getMethod(String name);
public IMethodDeclaration [] getMethods();
public boolean isUnion();
public boolean isClass();
public boolean isStruct();
public boolean isAbstract();
}