Klasse AssistSourceMethod

Alle implementierten Schnittstellen:
IAnnotatable, IJavaElement, IMember, IMethod, IParent, ISourceManipulation, ISourceReference, org.eclipse.core.runtime.IAdaptable

public class AssistSourceMethod extends ResolvedSourceMethod
  • Konstruktordetails

  • Methodendetails

    • getElementInfo

      public Object getElementInfo(org.eclipse.core.runtime.IProgressMonitor monitor) throws JavaModelException
      Beschreibung aus Klasse kopiert: JavaElement
      Returns the info for this handle. If this element is not already open, it and all of its parents are opened. Does not return null. NOTE: BinaryType infos are NOT rooted under JavaElementInfo.
      Setzt außer Kraft:
      getElementInfo in Klasse JavaElement
      Löst aus:
      JavaModelException - if the element is not present or not accessible
    • getKey

      public String getKey()
      Beschreibung aus Schnittstelle kopiert: IMethod
      Returns the binding key for this method only if the given method is resolved. A binding key is a key that uniquely identifies this method. It allows access to:
      • generic info for parameterized methods
      • the actual return type for references to Object.getClass()
      • the actual parameter types and return type for references to signature polymorphic methods from class MethodHandle

      If the given method is not resolved, the returned key is simply the java element's key.

      Angegeben von:
      getKey in Schnittstelle IMethod
      Setzt außer Kraft:
      getKey in Klasse ResolvedSourceMethod
      Gibt zurück:
      the binding key for this method
      Siehe auch:
    • isResolved

      public boolean isResolved()
      Beschreibung aus Schnittstelle kopiert: IMethod
      Returns whether this method represents a resolved method. If a method is resolved, its key contains resolved information.
      Angegeben von:
      isResolved in Schnittstelle IMethod
      Setzt außer Kraft:
      isResolved in Klasse ResolvedSourceMethod
      Gibt zurück:
      whether this method represents a resolved method.
    • toStringInfo

      protected void toStringInfo(int tab, StringBuffer buffer, Object info, boolean showResolvedInfo)
      Beschreibung aus Klasse kopiert: JavaElement
      Debugging purposes
      Setzt außer Kraft:
      toStringInfo in Klasse ResolvedSourceMethod
      Parameter:
      showResolvedInfo - TODO
    • getAnnotation

      public IAnnotation getAnnotation(String annotationName)
      Beschreibung aus Schnittstelle kopiert: IAnnotatable
      Returns the annotation with the given name declared on this element. This is a handle-only method. The annotation may or may not exist.
      Angegeben von:
      getAnnotation in Schnittstelle IAnnotatable
      Setzt außer Kraft:
      getAnnotation in Klasse SourceRefElement
      Parameter:
      annotationName - the given simple name
      Gibt zurück:
      the annotation with the given name declared on this element
    • getType

      public IType getType(String typeName, int count)
      Beschreibung aus Schnittstelle kopiert: IMember
      Returns the local or anonymous type declared in this source member with the given simple name and/or with the specified position relative to the order they are defined in the source. The name is empty if it is an anonymous type. Numbering starts at 1 (thus the first occurrence is occurrence 1, not occurrence 0). This is a handle-only method. The type may or may not exist. Throws a RuntimeException if this member is not a source member.
      Angegeben von:
      getType in Schnittstelle IMember
      Setzt außer Kraft:
      getType in Klasse Member
      Parameter:
      typeName - the given simple name
      count - the specified position
      Gibt zurück:
      the type with the given name and/or with the specified position relative to the order they are defined in the source
      Siehe auch:
    • getTypeParameter

      public ITypeParameter getTypeParameter(String typeParameterName)
      Beschreibung aus Schnittstelle kopiert: IMethod
      Returns the type parameter declared in this method with the given name. This is a handle-only method. The type parameter may or may not exist.
      Angegeben von:
      getTypeParameter in Schnittstelle IMethod
      Setzt außer Kraft:
      getTypeParameter in Klasse SourceMethod
      Parameter:
      typeParameterName - the given simple name
      Gibt zurück:
      the type parameter declared in this method with the given name