Klasse JavaSearchDocument

java.lang.Object
org.aspectj.org.eclipse.jdt.core.search.SearchDocument
org.aspectj.org.eclipse.jdt.internal.core.search.JavaSearchDocument
Bekannte direkte Unterklassen:
MatchLocator.WorkingCopyDocument

public class JavaSearchDocument extends SearchDocument
  • Felddetails

    • byteContents

      protected byte[] byteContents
    • charContents

      protected char[] charContents
  • Konstruktordetails

    • JavaSearchDocument

      public JavaSearchDocument(String documentPath, SearchParticipant participant)
    • JavaSearchDocument

      public JavaSearchDocument(ZipEntry zipEntry, org.eclipse.core.runtime.IPath zipFilePath, byte[] contents, SearchParticipant participant)
    • JavaSearchDocument

      public JavaSearchDocument(String documentPath, byte[] contents, SearchParticipant participant)
  • Methodendetails

    • getByteContents

      public byte[] getByteContents()
      Beschreibung aus Klasse kopiert: SearchDocument
      Returns the contents of this document. Contents may be different from actual resource at corresponding document path, in case of preprocessing.

      This method must be implemented in subclasses.

      Note: some implementation may choose to cache the contents directly on the document for performance reason. However, this could induce scalability issues due to the fact that collections of documents are manipulated throughout the search operation, and cached contents would then consume lots of memory until they are all released at once in the end.

      Angegeben von:
      getByteContents in Klasse SearchDocument
      Gibt zurück:
      the contents of this document, or null if none
    • getCharContents

      public char[] getCharContents()
      Beschreibung aus Klasse kopiert: SearchDocument
      Returns the contents of this document. Contents may be different from actual resource at corresponding document path due to preprocessing.

      This method must be implemented in subclasses.

      Note: some implementation may choose to cache the contents directly on the document for performance reason. However, this could induce scalability issues due to the fact that collections of documents are manipulated throughout the search operation, and cached contents would then consume lots of memory until they are all released at once in the end.

      Angegeben von:
      getCharContents in Klasse SearchDocument
      Gibt zurück:
      the contents of this document, or null if none
    • getEncoding

      public String getEncoding()
      Beschreibung aus Klasse kopiert: SearchDocument
      Returns the encoding for this document.

      This method must be implemented in subclasses.

      Angegeben von:
      getEncoding in Klasse SearchDocument
      Gibt zurück:
      the encoding for this document, or null if none
    • toString

      public String toString()
      Setzt außer Kraft:
      toString in Klasse Object