Uses of Interface
com.teamdev.jxcapture.image.operation.events.CaptureListener

Packages that use CaptureListener
com.teamdev.jxcapture.image.operation   
com.teamdev.jxcapture.image.operation.controllers   
com.teamdev.jxcapture.image.operation.events   
 

Uses of CaptureListener in com.teamdev.jxcapture.image.operation
 

Methods in com.teamdev.jxcapture.image.operation that return CaptureListener
 CaptureListener[] CaptureOperation.getCaptureListeners()
          Returns an array of all the capture operation listeners registered on this operation.
 

Methods in com.teamdev.jxcapture.image.operation with parameters of type CaptureListener
 void CaptureOperation.addCaptureListener(CaptureListener listener)
          Adds the specified capture operation listener to receive capture operation events from this operation.
static void Capture.captureActiveWindow(CaptureListener captureListener)
          Allows capturing a foreground window.
static void Capture.captureDesktop(CaptureListener captureListener)
          Allows making capture of the desktop.
static void Capture.captureObject(CaptureListener captureListener)
          Allows capturing a specified region on the screen.
static void Capture.captureRegion(CaptureListener captureListener)
          Allows capturing a specified region on the screen.
static void Capture.captureScreenObject(CaptureListener captureListener)
          Allows capturing a specified region on the screen.
 void CaptureOperation.removeCaptureListener(CaptureListener listener)
          Removes the specified capture operation listener, so that it no longer receives capture operation events from this operation.
 

Uses of CaptureListener in com.teamdev.jxcapture.image.operation.controllers
 

Fields in com.teamdev.jxcapture.image.operation.controllers declared as CaptureListener
protected  CaptureListener SelectionController.captureListener
           
 

Methods in com.teamdev.jxcapture.image.operation.controllers with parameters of type CaptureListener
 void SelectionController.activate(CaptureListener captureListener)
          Activates the object for listening to the mouse and key actions.
 

Uses of CaptureListener in com.teamdev.jxcapture.image.operation.events
 

Classes in com.teamdev.jxcapture.image.operation.events that implement CaptureListener
 class CaptureAdapter
          An abstract adapter class for receiving capture operation events.