1 19 20 package org.netbeans.modules.xml.refactoring.ui.j.api; 21 22 import javax.swing.Action ; 23 import org.netbeans.modules.xml.refactoring.ui.j.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 46 public void showDetails(Action rerunRefactoringAction, Cancellable parent) { 47 pdi.showDetails(rerunRefactoringAction, parent); 48 } 49 50 54 public String getDetailsHint() { 55 return pdi.getDetailsHint(); 56 } 57 } 58 | Popular Tags |