[
https://issues.jboss.org/browse/FORGE-1847?page=com.atlassian.jira.plugin...
]
Lincoln Baxter III commented on FORGE-1847:
-------------------------------------------
Actually I think we should probably alter this to return UISelection.get() from the
user's context.getInitialSelection() in the case where no selection has explicitly
been set. This would follow the practice of least surprise IMO.
UIContext.getSelection() always return null
-------------------------------------------
Key: FORGE-1847
URL:
https://issues.jboss.org/browse/FORGE-1847
Project: Forge
Issue Type: Bug
Components: UI - Shell
Affects Versions: 2.5.0.Final
Reporter: Aslak Knutsen
{code}
value.setDefaultValue(new Callable<JavaResource>() {
@Override
public JavaResource call() throws Exception {
Object selected = builder.getUIContext().getSelection();
if(selected != null && selected instanceof JavaResource) {
return (JavaResource)selected;
}
return null;
}
});
{code}
Object selected is always null.
Using InitalSelection works as expected.
{code}
Object selected = builder.getUIContext().getInitialSelection().get();
{code}
--
This message was sent by Atlassian JIRA
(v6.2.3#6260)