Revision 23166 branches/v2_0_0_prep/libraries/libIverUtiles/src/com/iver/utiles/swing/threads/Cancellable.java

View differences:

Cancellable.java
41 41
package com.iver.utiles.swing.threads;
42 42

  
43 43
/**
44
 * <p><code>Cancellable</code> interface is designed for adding support to notify that a task must be cancelled.</p>
44
 * <p>
45
 * <code>Cancellable</code> interface is designed for adding support to notify
46
 * that a task must be cancelled.
47
 * </p>
45 48
 * 
46
 * <p>This is useful if a process is hung up, blocking, or simply if user wants cancel it, for instance, a
47
 *  drawing process of a heavy layer.</p>
49
 * <p>
50
 * This is useful if a process is hung up, blocking, or simply if user wants
51
 * cancel it, for instance, a drawing process of a heavy layer.
52
 * </p>
48 53
 * 
49
 * <p>The classes which implement this interface are force to share the canceling information, in order to be
50
 *  notified about the current status of it. This implies a synchronous canceling process, that could be implemented by
51
 *  another object.</p>
54
 * <p>
55
 * The classes which implement this interface are force to share the canceling
56
 * information, in order to be notified about the current status of it. This
57
 * implies a synchronous canceling process, that could be implemented by another
58
 * object.
59
 * </p>
60
 * 
61
 * @deprecated @see org.gvsig.tools.task.Cancellable
52 62
 */
53 63
public interface Cancellable {
54 64
	/**

Also available in: Unified diff