[ 
https://issues.apache.org/jira/browse/PIVOT-919?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sandro Martini updated PIVOT-919:
---------------------------------

    Fix Version/s: 2.1
    
> 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 is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to