Toggle navigation
Home
java.lang.String to org.eclipse.che.api.debug.shared.model.SimpleValue
No. of Instances - 14
No. of Commits - 2
No. of Projects - {'che'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Jdk -> Internal
Mapping:
Cascading Type Change (Different)
Operation<String>
to
Operation<SimpleValue>
Add or Remove Method invocation
promise.then(new Operation<SimpleValue>(){ @Override public void apply( String arg) throws OperationException { List<Variable> variables=dtoFactory.createListDtoFromJson(arg,Variable.class); List<DebuggerVariable> debuggerVariables=getDebuggerVariables(variables); view.setVariablesIntoSelectedVariable(debuggerVariables); view.updateSelectedVariable(); } } )
to
promise.then(new Operation<SimpleValue>(){ @Override public void apply( SimpleValue arg) throws OperationException { selectedVariable.setValue(arg.getValue()); view.setVariablesIntoSelectedVariable(selectedVariable.getVariables()); view.updateSelectedVariable(); } } )