Uses of Class
myDataBases.MySQLbase

Packages that use MySQLbase
crowdUser This package contains classes allowing CPS to harness CrowdFlower's crowdsourced-obtained results as well as uploading new jobs. 
myShell It is the interface between CPS and the rest of the computer as well as the user : it reads configuration files, writes the results, a log file and contains the main method. 
sorter A package containing classes performing the splitsort itself, i.e performs a quicksort while asking the results of the comparisons to other parts of the software. 
 

Uses of MySQLbase in crowdUser
 

Fields in crowdUser declared as MySQLbase
private  MySQLbase CrowdManager.dbSQL
          The MySQLbase instance to which it is connected and in which HIT results must be stored.
 

Constructors in crowdUser with parameters of type MySQLbase
CrowdManager(java.lang.Integer firstJobId, java.lang.String key, java.lang.String resultsUrl, MySQLbase baseSQL, MediaBase baseDIR, java.util.List<java.lang.String> fieldsHardData)
          Creates an instance of the CrowdManager class.
 

Uses of MySQLbase in myShell
 

Fields in myShell declared as MySQLbase
static MySQLbase MainClass.hitBdd
          The MySQLbase instance used to store the job results, both raw and refined.
 

Uses of MySQLbase in sorter
 

Fields in sorter declared as MySQLbase
private  MySQLbase Comparator.sqlBase
          The MySQLbase database from which comparisons will be retrieved.
 

Constructors in sorter with parameters of type MySQLbase
Comparator(java.util.Map<java.lang.String,SplitSort> sorter, MySQLbase bdd)
          Creates a Comparator instance using the SplitSorts contained in the sorter map and links it with a MySQLbase instance.