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

/openjdk7/jdk/make/tools/src/build/tools/generatenimbus/
H A DUIStyle.java58 @XmlElement CacheMode cacheMode = CacheMode.FIXED_SIZES; field in class:UIStyle
76 return cacheMode;
/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) {
499 private CacheMode cacheMode; field in class:AbstractRegionPainter.PaintContext
534 * @param cacheMode A hint as to which caching mode to use. If null, then set to no caching.
545 CacheMode cacheMode, double maxH, double maxV) {
553 this.cacheMode = cacheMode == null ? CacheMode.NO_CACHING : cacheMode;
544 PaintContext(Insets insets, Dimension canvasSize, boolean inverted, CacheMode cacheMode, double maxH, double maxV) argument
[all...]

Completed in 25 milliseconds