[
https://issues.apache.org/jira/browse/PIVOT-919?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13811317#comment-13811317
]
Sandro Martini commented on PIVOT-919:
--------------------------------------
Removed from 2.0.4 as target release, unless there are good reasons to re-add
... tell me if/why it's needed.
And check even if it's something needed for 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.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)