use of org.eclipse.che.api.debug.shared.model.impl.MutableVariableImpl in project che by eclipse.
the class DebuggerViewImpl method setVariables.
/** {@inheritDoc} */
@Override
public void setVariables(@NotNull List<? extends Variable> variables) {
MutableVariable root = this.variables.getModel().getRoot();
if (root == null) {
root = new MutableVariableImpl();
this.variables.getModel().setRoot(root);
}
root.setVariables(variables);
this.variables.renderTree(0);
}
Aggregations