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

/openjdk9/jdk/src/java.desktop/share/classes/com/sun/java/swing/plaf/windows/
H A DDesktopProperty.java56 private WeakPCL pcl;
76 WeakPCL pcl;
78 while ((pcl = (WeakPCL)queue.poll()) != null) {
170 pcl = new WeakPCL(this, getKey(), UIManager.getLookAndFeel());
257 private static class WeakPCL extends WeakReference<DesktopProperty> class in class:DesktopProperty
262 WeakPCL(DesktopProperty target, String key, LookAndFeel laf) { method in class:DesktopProperty.WeakPCL
/openjdk9/jdk/src/java.desktop/share/classes/com/sun/java/swing/plaf/gtk/
H A DGTKLookAndFeel.java279 WeakPCL pcl = new WeakPCL(this, kit, "gnome.Net/ThemeName");
281 pcl = new WeakPCL(this, kit, "gnome.Gtk/FontName");
283 pcl = new WeakPCL(this, kit, "gnome.Xft/DPI");
1455 WeakPCL pcl;
1457 while ((pcl = (WeakPCL)queue.poll()) != null) {
1462 static class WeakPCL extends WeakReference<GTKLookAndFeel> implements class in class:GTKLookAndFeel
1467 WeakPCL(GTKLookAndFeel target, Toolkit kit, String key) { method in class:GTKLookAndFeel.WeakPCL
/openjdk9/jdk/src/jdk.jconsole/share/classes/sun/tools/jconsole/
H A DProxyClient.java876 if (!(listener instanceof WeakPCL)) {
877 listener = new WeakPCL(listener);
883 if (!(listener instanceof WeakPCL)) {
884 // Search for the WeakPCL holding this listener (if any)
886 if (pcl instanceof WeakPCL && ((WeakPCL)pcl).get() == listener) {
899 private class WeakPCL extends WeakReference<PropertyChangeListener> class in class:ProxyClient
901 WeakPCL(PropertyChangeListener referent) { method in class:ProxyClient.WeakPCL
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/
H A DJFileChooser.java399 showFilesListener = new WeakPCL(this);
1785 private static class WeakPCL implements PropertyChangeListener { class in class:JFileChooser
1788 public WeakPCL(JFileChooser jfc) { method in class:JFileChooser.WeakPCL

Completed in 269 milliseconds