Searched defs:CacheMode (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/make/tools/src/build/tools/generatenimbus/
H A DUIStyle.java41 public static enum CacheMode { enum in class:UIStyle
58 @XmlElement CacheMode cacheMode = CacheMode.FIXED_SIZES;
71 public CacheMode getCacheMode() {
74 CacheMode.FIXED_SIZES : parentStyle.getCacheMode());
381 String cacheModeString = "AbstractRegionPainter.PaintContext.CacheMode." + style.getCacheMode();
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DAbstractRegionPainter.java149 PaintContext.CacheMode cacheMode = ctx == null ? PaintContext.CacheMode.NO_CACHING : ctx.cacheMode;
150 if (cacheMode == PaintContext.CacheMode.NO_CACHING ||
155 } else if (cacheMode == PaintContext.CacheMode.FIXED_SIZES) {
490 protected static enum CacheMode { enum in class:AbstractRegionPainter.PaintContext
499 private CacheMode cacheMode;
545 CacheMode cacheMode, double maxH, double maxV) {
553 this.cacheMode = cacheMode == null ? CacheMode.NO_CACHING : cacheMode;

Completed in 32 milliseconds