Ejemplo n.º 1
0
 public Annotation(string output_file,string output_csv_file){
        
     this.fileInfo=new FileInformation();
     this.categories = new ArrayList();
     this.data = new ArrayList();
     this.output_file = output_file;
     this.output_csv_file = output_csv_file;
 }
Ejemplo n.º 2
0
        public Annotation()
        {

            this.fileInfo = new FileInformation();
            this.categories = new ArrayList();
            this.data = new ArrayList();
            fileSuffix = DateTime.Now.ToString("-yyyy-MM-dd-HH-mm-ss");
            this.output_file = DEFAULT_OUTPUT_FILE + ".xml";
            this.output_csv_file = DEFAULT_OUTPUT_CSV_FILE + ".csv";
        }