Interface ICompositeType

All Superinterfaces:
Cloneable, org.eclipse.core.runtime.IAdaptable, IBinding, IType
All Known Subinterfaces:
ICPPClassSpecialization, ICPPClassTemplate, ICPPClassTemplatePartialSpecialization, ICPPClassTemplatePartialSpecializationSpecialization, ICPPClassType, ICPPTemplateTemplateParameter

public interface ICompositeType extends IBinding, IType
Interface for all composite types: classes, structs and unions.
Restriction:
This interface is not intended to be implemented by clients.
Restriction:
This interface is not intended to be extended by clients.
  • Field Details

  • Method Details

    • getKey

      int getKey()
      Returns the type of the composite, k_struct, k_union, or ICPPClassType.k_class.
    • isAnonymous

      boolean isAnonymous()
      Returns whether the type is anonymous or not. A type for which objects or pointers are declared is not considered an anonymous type.
       struct Outer {
          struct {int a;}; // anonymous
          struct {int b;} c; // not anonymous
       }
       
      Since:
      5.1
    • getFields

      IField[] getFields()
      Returns the fields for this type.
      Returns:
      List of IField
    • findField

      IField findField(String name)
      Returns the field that matches name, or null if there is no such field.
      Parameters:
      name -
    • getCompositeScope

      IScope getCompositeScope()
      Returns the IScope object that is associated with this composite type.