Revision 3010 org.gvsig.tools/library/trunk/org.gvsig.tools/org.gvsig.tools.lib/src/main/java/org/gvsig/tools/observer/BaseNotification.java

View differences:

BaseNotification.java
5 5
    private final String type;
6 6
    protected Object[] values;
7 7
    protected boolean canceled = false;
8
    private boolean aborted;
8 9

  
9 10
    public BaseNotification(String type, int values) {
10 11
        this.type = type;
......
61 62
    public void cancel() {
62 63
        this.canceled = true;
63 64
    }
65

  
66
    @Override
67
    public boolean isAborted() {
68
        return this.aborted;
69
    }
70

  
71
    @Override
72
    public void abort() {
73
        this.aborted = true;
74
    }
64 75
}
65 76

  

Also available in: Unified diff