AbstractTask.java :  » IDE-Netbeans » identity.kit » org » netbeans » modules » identity » profile » ui » support » Java Open Source

Java Open Source » IDE Netbeans » identity.kit 
identity.kit » org » netbeans » modules » identity » profile » ui » support » AbstractTask.java
/*
 * AbstractTask.java
 *
 * Created on March 22, 2007, 1:16 AM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package org.netbeans.modules.identity.profile.ui.support;

import org.netbeans.api.java.source.CancellableTask;

/**
 *
 * @author PeterLiu
 */
public abstract class AbstractTask<P> implements CancellableTask<P> {
    
    /** Creates a new instance of AbstractTask */
    public AbstractTask() {
    }
  
    public void cancel() {};
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.