1 11 package org.eclipse.debug.ui.actions; 12 13 import org.eclipse.debug.core.model.IVariable; 14 import org.eclipse.swt.widgets.Shell; 15 16 42 public interface IVariableValueEditor { 43 44 57 public boolean editVariable(IVariable variable, Shell shell); 58 59 73 public boolean saveVariable(IVariable variable, String expression, Shell shell); 74 } 75 | Popular Tags |