Package org.eclipse.jdt.internal.core.util

Examples of org.eclipse.jdt.internal.core.util.LRUCache$Stats


    public PerProjectInfo(IProject project) {

      this.triedRead = false;
      this.savedState = null;
      this.project = project;
      this.javadocCache = new LRUCache(JAVADOC_CACHE_INITIAL_SIZE);
    }
View Full Code Here


      this.rawClasspathStatus = newRawClasspathStatus;
      this.resolvedClasspath = newResolvedClasspath;
      this.rootPathToRawEntries = newRootPathToRawEntries;
      this.rootPathToResolvedEntries = newRootPathToResolvedEntries;
      this.unresolvedEntryStatus = newUnresolvedEntryStatus;
      this.javadocCache = new LRUCache(JAVADOC_CACHE_INITIAL_SIZE);

      return classpathChange;
    }
View Full Code Here

    default:
      this.childrenCache.remove(element);
  }
}
protected void resetJarTypeCache() {
  this.jarTypeCache = new LRUCache((int) (DEFAULT_OPENABLE_SIZE * getMemoryRatio()));
}
 
View Full Code Here

    default:
      this.childrenCache.remove(element);
  }
}
protected void resetJarTypeCache() {
  this.jarTypeCache = new LRUCache((int) (DEFAULT_OPENABLE_SIZE * getMemoryRatio() * getJarTypeRatio()));
}
 
View Full Code Here

    public PerProjectInfo(IProject project) {

      this.triedRead = false;
      this.savedState = null;
      this.project = project;
      this.javadocCache = new LRUCache(JAVADOC_CACHE_INITIAL_SIZE);
    }
View Full Code Here

      this.rawClasspathStatus = newRawClasspathStatus;
      this.resolvedClasspath = newResolvedClasspath;
      this.rootPathToRawEntries = newRootPathToRawEntries;
      this.rootPathToResolvedEntries = newRootPathToResolvedEntries;
      this.unresolvedEntryStatus = newUnresolvedEntryStatus;
      this.javadocCache = new LRUCache(JAVADOC_CACHE_INITIAL_SIZE);

      return classpathChange;
    }
View Full Code Here

    default:
      this.childrenCache.remove(element);
  }
}
protected void resetJarTypeCache() {
  this.jarTypeCache = new LRUCache((int) (DEFAULT_OPENABLE_SIZE * getMemoryRatio() * getJarTypeRatio()));
}
 
View Full Code Here

    public PerProjectInfo(IProject project) {

      this.triedRead = false;
      this.savedState = null;
      this.project = project;
      this.javadocCache = new LRUCache(JAVADOC_CACHE_INITIAL_SIZE);
    }
View Full Code Here

      this.rawClasspathStatus = newRawClasspathStatus;
      this.resolvedClasspath = newResolvedClasspath;
      this.rootPathToRawEntries = newRootPathToRawEntries;
      this.rootPathToResolvedEntries = newRootPathToResolvedEntries;
      this.unresolvedEntryStatus = newUnresolvedEntryStatus;
      this.javadocCache = new LRUCache(JAVADOC_CACHE_INITIAL_SIZE);

      return classpathChange;
    }
View Full Code Here

TOP

Related Classes of org.eclipse.jdt.internal.core.util.LRUCache$Stats

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.