| org.netbeans.modules.refactoring.spi.ProblemDetailsImplementation
ProblemDetailsImplementation | public interface ProblemDetailsImplementation (Code) | | Typical implementation will invoke UI component on showDetails() call
This UI component will display ProblemDetails. There will be a button, or
similar UI control, which will be connected to rerunRefactoringAction to
invoke refactoring again once the Problem is fixed.
author: Jan Becicka since: 1.5.0 |
Method Summary | |
String | getDetailsHint() Message that will be displayed in parameters panel as a hint to suggest user,
that there are more details available. | void | showDetails(Action rerunRefactoringAction, Cancellable parent) This method will typically invoke component with ProblemDetails. |
getDetailsHint | String getDetailsHint()(Code) | | Message that will be displayed in parameters panel as a hint to suggest user,
that there are more details available.
string representation of details hint |
showDetails | void showDetails(Action rerunRefactoringAction, Cancellable parent)(Code) | | This method will typically invoke component with ProblemDetails.
It is fully upon clients, how this component will be implemented.
Parameters: rerunRefactoringAction - this action is passed to client component Parameters: parent - parent component, than can be closed by cancel method.to allow clients to rerun refactoring once the Problem is fixed. |
|
|