Searched refs:WeakPCL (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DDesktopProperty.java57 private WeakPCL pcl;
77 WeakPCL pcl;
79 while ((pcl = (WeakPCL)queue.poll()) != null) {
169 pcl = new WeakPCL(this, getKey(), UIManager.getLookAndFeel());
256 private static class WeakPCL extends WeakReference<DesktopProperty> class in class:DesktopProperty
261 WeakPCL(DesktopProperty target, String key, LookAndFeel laf) { method in class:DesktopProperty.WeakPCL
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DGTKLookAndFeel.java318 WeakPCL pcl = new WeakPCL(this, kit, "gnome.Net/ThemeName");
320 pcl = new WeakPCL(this, kit, "gnome.Gtk/FontName");
322 pcl = new WeakPCL(this, kit, "gnome.Xft/DPI");
1476 WeakPCL pcl;
1478 while ((pcl = (WeakPCL)queue.poll()) != null) {
1483 static class WeakPCL extends WeakReference<GTKLookAndFeel> implements class in class:GTKLookAndFeel
1488 WeakPCL(GTKLookAndFeel target, Toolkit kit, String key) { method in class:GTKLookAndFeel.WeakPCL
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DProxyClient.java884 if (!(listener instanceof WeakPCL)) {
885 listener = new WeakPCL(listener);
891 if (!(listener instanceof WeakPCL)) {
892 // Search for the WeakPCL holding this listener (if any)
894 if (pcl instanceof WeakPCL && ((WeakPCL)pcl).get() == listener) {
907 private class WeakPCL extends WeakReference<PropertyChangeListener> class in class:ProxyClient
909 WeakPCL(PropertyChangeListener referent) { method in class:ProxyClient.WeakPCL
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJFileChooser.java383 showFilesListener = new WeakPCL(this);
1763 private static class WeakPCL implements PropertyChangeListener { class in class:JFileChooser
1766 public WeakPCL(JFileChooser jfc) { method in class:JFileChooser.WeakPCL

Completed in 39 milliseconds