com.teamdev.jxcapture.image.operation.events
Class CaptureAdapter

java.lang.Object
  extended by com.teamdev.jxcapture.image.operation.events.CaptureAdapter
All Implemented Interfaces:
CaptureListener

public abstract class CaptureAdapter
extends java.lang.Object
implements CaptureListener

An abstract adapter class for receiving capture operation events.


Constructor Summary
CaptureAdapter()
           
 
Method Summary
 void cancel()
          Invoked when the capture operation is canceled.
 void complete(java.awt.image.BufferedImage image)
          Invoked when the capture operation is completed.
 void start()
          Invoked when the capture operation is started.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CaptureAdapter

public CaptureAdapter()
Method Detail

start

public void start()
Description copied from interface: CaptureListener
Invoked when the capture operation is started.

Specified by:
start in interface CaptureListener

cancel

public void cancel()
Description copied from interface: CaptureListener
Invoked when the capture operation is canceled.

Specified by:
cancel in interface CaptureListener

complete

public void complete(java.awt.image.BufferedImage image)
Description copied from interface: CaptureListener
Invoked when the capture operation is completed.

Specified by:
complete in interface CaptureListener
Parameters:
image - an image that represents the result of the capture operation