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

/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DAnimationController.java192 component.getClientProperty(PartUIClientPropertyKey.getKey(part));
201 component.putClientProperty(PartUIClientPropertyKey.getKey(part),
405 private static class PartUIClientPropertyKey class in class:AnimationController
408 private static final Map<Part, PartUIClientPropertyKey> map =
409 new EnumMap<Part, PartUIClientPropertyKey>(Part.class);
411 static synchronized PartUIClientPropertyKey getKey(Part part) {
412 PartUIClientPropertyKey rv = map.get(part);
414 rv = new PartUIClientPropertyKey(part);
421 private PartUIClientPropertyKey(Part part) { method in class:AnimationController.PartUIClientPropertyKey

Completed in 922 milliseconds