JTwain v9 - Lab Asprise! All Rights Reserved.

Uses of Class
com.asprise.util.jtwain.Source

Packages that use Source
com.asprise.util.jtwain Main package; contains essential classes to perform image acquisition. 
com.asprise.util.jtwain.lowlevel Low-level APIs for advanced development of TWAIN applications. 
 

Uses of Source in com.asprise.util.jtwain
 

Methods in com.asprise.util.jtwain that return Source
 Source[] SourceManager.getAllSources()
          Queries all the available sources.
 Source SourceManager.getDefaultSource()
          Gets the default data source.
 Source SourceManager.getCurrentSource()
          Gets the current active source.
 Source SourceManager.selectSourceUI()
          Displays a dialog to let the user select a data source.
 Source SourceManager.selectSource(Source source)
          Selects a Source and a Source as the current active source.
 Source SourceManager.selectSourceByName(String sourceName)
          Selects the source with the specified name as the current active source.
 

Methods in com.asprise.util.jtwain with parameters of type Source
 void SourceManager.openSource(Source source)
          Opens the target data source.
 Source SourceManager.selectSource(Source source)
          Selects a Source and a Source as the current active source.
 

Uses of Source in com.asprise.util.jtwain.lowlevel
 

Methods in com.asprise.util.jtwain.lowlevel that return Source
static Source Control.getCurrentSource()
          Gets the current active source.
 

Methods in com.asprise.util.jtwain.lowlevel with parameters of type Source
static void Control.openDataSource(Source source)
          Opens the specified data source.
static int Control.getState(Source source)
          Gets the status of a Source.
static String Control.acquireOneImage(Source source)
          Acquires an image from a Source.
static void Control.assertState(Source source, int requiredState)
          Asserts the current state is the required one.
static void Control.assertStateAtLeast(Source source, int requiredStateAtLeast)
          Asserts the current state is the required state or above it.
static boolean Control.assertStateNoException(Source source, int requiredState)
          Asserts the current state is the required one.
 


JTwain v9 - Lab Asprise! All Rights Reserved.