[ 
https://issues.apache.org/jira/browse/PIVOT-919?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13782783#comment-13782783
 ] 

Sandro Martini commented on PIVOT-919:
--------------------------------------

Hi Sven, do you need this feature for something specific like applet-to-applet 
communication ?
Have you got a minimal sample for your rquirements ? Thanks.

> Add functions to get the applet class that was running in the 
> BrowserApplicationContext class
> ---------------------------------------------------------------------------------------------
>
>                 Key: PIVOT-919
>                 URL: https://issues.apache.org/jira/browse/PIVOT-919
>             Project: Pivot
>          Issue Type: Wish
>          Components: wtk
>    Affects Versions: 2.0.3
>         Environment: All OS's with Version 2.0.3
>            Reporter: Sven Leiber
>            Assignee: Sandro Martini
>            Priority: Minor
>              Labels: patch
>             Fix For: 2.0.4, 2.1
>
>
> I think it was a missing function to get the applet classes from the 
> BrowserApplicationContext. I think we can add there two functions:
>     public static HostApplet getApplet(String name) {
>         if (name == null) {
>             throw new IllegalArgumentException("name is null.");
>         }
>         for (HostApplet hostApplet : hostApplets) {
>             if (hostApplet.getName().equals(name)) {
>               return hostApplet;
>             }
>         }
>         return null;
>     }
>     public static HostApplet getApplet() {
>       if(isActive()) {
>               return hostApplets.get(0);
>       }
>       return null;
>     }



--
This message was sent by Atlassian JIRA
(v6.1#6144)

Reply via email to