1 19 27 28 package org.netbeans.modules.xml.refactoring.ui; 29 30 import org.openide.util.Cancellable; 31 32 36 37 38 public class CancelGraph implements Cancellable,CancelSignal { 39 40 private boolean isCancelRequested; 41 42 public boolean cancel() { 43 isCancelRequested = true; 44 return true; 45 } 46 47 50 public boolean isCancelRequested() { 51 return isCancelRequested; 52 } 53 } 54 | Popular Tags |