|
From: Martin L. <mar...@us...> - 2004-03-30 19:27:22
|
Update of /cvsroot/babeldoc/babeldoc/modules/scanner/src/com/babeldoc/scanner In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4646/modules/scanner/src/com/babeldoc/scanner Modified Files: ScannerWorkerInfo.java Log Message: Minor documentation updates Index: ScannerWorkerInfo.java =================================================================== RCS file: /cvsroot/babeldoc/babeldoc/modules/scanner/src/com/babeldoc/scanner/ScannerWorkerInfo.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** ScannerWorkerInfo.java 12 Sep 2003 01:09:16 -0000 1.12 --- ScannerWorkerInfo.java 30 Mar 2004 19:15:41 -0000 1.13 *************** *** 123,127 **** //adding general scanner options ConfigOption typeOption = new ConfigOption(SCANNER_TYPE, ! new ServiceTypeConfigOptionType(SCANNER), null, true, "Type of scanner"); typeOption.setMutable(false); //cannot change type general.add(typeOption); --- 123,127 ---- //adding general scanner options ConfigOption typeOption = new ConfigOption(SCANNER_TYPE, ! new ServiceTypeConfigOptionType(SCANNER), null, true, "General: Type of scanner (" + this.getName() +")"); typeOption.setMutable(false); //cannot change type general.add(typeOption); *************** *** 129,137 **** ConfigOption periodOption = new ConfigOption(SCANNER_PERIOD, IConfigOptionType.INTEGER, null, false, ! "Interval between two scanning operation in milliseconds"); ConfigOption scheduleOption = new ConfigOption(SCANNER_CRON_SCHEDULE, IConfigOptionType.STRING, null, false, ! "Cron-like entry for speciying scanner schedule"); //these two options are exclusive --- 129,137 ---- ConfigOption periodOption = new ConfigOption(SCANNER_PERIOD, IConfigOptionType.INTEGER, null, false, ! "General: Interval between two scanning operation in milliseconds (Only one of cronSchedule or period can be used)"); ConfigOption scheduleOption = new ConfigOption(SCANNER_CRON_SCHEDULE, IConfigOptionType.STRING, null, false, ! "General: Cron-like entry for speciying scanner schedule (Only one of cronSchedule or period can be used)"); //these two options are exclusive *************** *** 143,160 **** general.add(new ConfigOption(SCANNER_PIPELINE, IConfigOptionType.STRING, null, true, ! "Name of pipeline where scanned document will be processed")); general.add(new ConfigOption(IGNORED, IConfigOptionType.BOOLEAN, "false", false, ! "true if scanner should not scan false otherwise. Default is false")); general.add(new ConfigOption(JOURNAL, IConfigOptionType.BOOLEAN, "true", false, ! "Should the scanner use the journal. Default is true")); general.add(new ConfigOption(COUNTDOWN, IConfigOptionType.INTEGER, "-1", false, ! "The number of times this countdown must run.")); general.add(new ConfigOption(BINARY, IConfigOptionType.BOOLEAN, "false", false, ! "The documents from this stage must be submitted as binary pipeline documents")); return general; --- 143,163 ---- general.add(new ConfigOption(SCANNER_PIPELINE, IConfigOptionType.STRING, null, true, ! "General: Name of pipeline where scanned document will be processed")); ! general.add(new ConfigOption(CONTENT_TYPE, ! IConfigOptionType.STRING, null, false, ! "General: Content type of document to be scanned")); general.add(new ConfigOption(IGNORED, IConfigOptionType.BOOLEAN, "false", false, ! "General: true if scanner should not scan false otherwise. Default is false")); general.add(new ConfigOption(JOURNAL, IConfigOptionType.BOOLEAN, "true", false, ! "General: Should the scanner use the journal. Default is true")); general.add(new ConfigOption(COUNTDOWN, IConfigOptionType.INTEGER, "-1", false, ! "General: The number of times this countdown must run.")); general.add(new ConfigOption(BINARY, IConfigOptionType.BOOLEAN, "false", false, ! "General: The documents from this stage must be submitted as binary pipeline documents")); return general; |