[rfc][icedtea-web] exctrat "rember deccision" panel so it canbe reused

Jiri Vanek jvanek at redhat.com
Thu May 21 13:57:19 UTC 2015


hi!

I wont to introduce global solution for various dialogues, so they can be checked by user, and will 
not show again.

Some of dialogues already have this feature, but some have not.  The user0interaction part is alrady 
avaiable in those who had it (and are not certificate based).

This patch extracted this aprt to few classes in separate package.


I hope I will later reuse this "RememberPanel.java" in some of  current dialogues whcih also deserve 
this feature. (Ialready have global solution in mind)

Except hunk:
//in this moment, panel is placed on some dialogue
+                Container p = RememberPanel.this.getParent();
+                while (p != null) {
+                    if (p instanceof SecurityDialog) {
+                        ((SecurityDialog) p).setValue(action);
+                        ((SecurityDialog) p).dispose();
+                        break;
+                    }
+                    p = p.getParent();
+                }

The whole patch is really an refactroing.


J.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: exctractRemeberPanel.diff
Type: text/x-patch
Size: 36039 bytes
Desc: not available
URL: <http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20150521/13770aca/exctractRemeberPanel-0001.diff>


More information about the distro-pkg-dev mailing list