1 19 20 package org.netbeans.modules.refactoring.api; 21 22 import javax.swing.Action ; 23 import org.netbeans.modules.refactoring.spi.ProblemDetailsImplementation; 24 import org.openide.util.Cancellable; 25 26 31 public final class ProblemDetails { 32 33 private ProblemDetailsImplementation pdi; 34 35 ProblemDetails (ProblemDetailsImplementation pdi) { 36 this.pdi=pdi; 37 } 38 39 47 public void showDetails(Action rerunRefactoringAction, Cancellable parent) { 48 pdi.showDetails(rerunRefactoringAction, parent); 49 } 50 51 56 public String getDetailsHint() { 57 return pdi.getDetailsHint(); 58 } 59 } 60 | Popular Tags |