Package org.aspectj.org.eclipse.jdt.internal.core.search

Examples of org.aspectj.org.eclipse.jdt.internal.core.search.JavaSearchDocument


          // iterate each entry to index it
          ZipEntry ze = (ZipEntry) e.nextElement();
          if (Util.isClassFileName(ze.getName())) {
            final byte[] classFileBytes = org.aspectj.org.eclipse.jdt.internal.compiler.util.Util.getZipEntryByteContent(ze, zip);
            JavaSearchDocument entryDocument = new JavaSearchDocument(ze, zipFilePath, classFileBytes, participant);
            this.manager.indexDocument(entryDocument, participant, index, this.containerPath);
          }
        }
        this.manager.saveIndex(index);
        if (JobManager.VERBOSE)
View Full Code Here

TOP

Related Classes of org.aspectj.org.eclipse.jdt.internal.core.search.JavaSearchDocument

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.