Changeset 395


Ignore:
Timestamp:
Aug 15, 2007, 11:47:00 AM (16 years ago)
Author:
dominic
Message:

updated jar files and constant class

Location:
trunk/uk/ac/ebi/AnnotationTypeCvImporter
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/uk/ac/ebi/AnnotationTypeCvImporter/src/uk/ac/ebi/nugo/common/Helper.java

    r390 r395  
    7979  public static void displayParameterHeader(Set<String> parameterSectionHeader)
    8080   {
    81       System.out.println("+++++ List all parameter header  +++++");
    82       for (String paramHyb : parameterSectionHeader)
     81      for (String paramHyb : parameterSectionHeader)
    8382      {
    8483        System.out.println(paramHyb+"\n");
  • trunk/uk/ac/ebi/AnnotationTypeCvImporter/src/uk/ac/ebi/nugo/plugins/AnnotationTypeCvImporter.java

    r384 r395  
    3535import net.sf.basedb.util.parser.Mapper;
    3636import net.sf.basedb.util.Values;
    37 import uk.ac.ebi.nugo.plugins.util.ValueFormatter;
    3837
    3938
     
    512511          if (category != null)
    513512          {
    514             List<String> annotationTypeCategory=
    515               ValueFormatter.getList(columnMappings.get("categoryColumnMapping").getValue(data),";");
     513            List<String> annotationTypeCategory= Values.getList(columnMappings.get("categoryColumnMapping").getValue(data),";");
    516514           
    517515            for (int i=0, z=annotationTypeCategory.size(); i<z;i++)
     
    542540          if (enumeration)
    543541            annotationType.setValues
    544               (ValueFormatter.getList(columnMappings.get("cvValueColumnMapping").getValue(data),";"));
     542              (Values.getList(columnMappings.get("cvValueColumnMapping").getValue(data),";"));
    545543         
    546544          itemType= columnMappings.get("itemTypeColumnMapping").getValue(data);
     
    548546          {
    549547            Item[] items=Item.values();
    550             List<String> itemTypes=ValueFormatter.getList(columnMappings.get("itemTypeColumnMapping").getValue(data),separator); 
     548            List<String> itemTypes=Values.getList(columnMappings.get("itemTypeColumnMapping").getValue(data),separator); 
    551549            for (String itemType: itemTypes)
    552550            {
Note: See TracChangeset for help on using the changeset viewer.