25 lines
571 B
Java
25 lines
571 B
Java
|
|
package PSEditor;
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* PSCReader
|
||
|
|
* @author Jiamin
|
||
|
|
*
|
||
|
|
* This class reads the example & also the existing Parallel Secondo Config file
|
||
|
|
* Like the SecondoConfig.ini, parameters here also are organized by sections.
|
||
|
|
* At present, total four sections are provided: Secondo, Hadoop, Cluster and Options
|
||
|
|
* The Secondo section is only prepared, but not supported yet.
|
||
|
|
*
|
||
|
|
* There are two kinds of parameters:
|
||
|
|
* - SINGLE: TITLE = VALUE
|
||
|
|
* - MULTI: TITLE += VALUE
|
||
|
|
*
|
||
|
|
* In factor, it can be taken place by the SCReader class
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
public class PSCReader {
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
|