Skip to content

Commit

Permalink
Add getResponseValues and getColHeaders methods to Dataset interface
Browse files Browse the repository at this point in the history
so that the methods are used in AbstractSignaturesDatasetFromSDF
  • Loading branch information
Valentin Georgiev committed May 7, 2012
1 parent 4b688bb commit d10af5c
Showing 1 changed file with 4 additions and 0 deletions.
@@ -1,11 +1,15 @@
package net.bioclipse.core.domain;

import java.util.List;

public interface IDataset {

public static final String CSV_SEPARATOR = "\t";

public String getFileExtension();
public String getFileContents();

public List<String> getResponseValues();
public List<String> getColHeaders();

}

0 comments on commit d10af5c

Please sign in to comment.