Show
Ignore:
Timestamp:
08/19/09 05:53:32 (3 years ago)
Author:
jgao
Message:

IDMapperBiomart refactor to clean the interface

Location:
trunk/corelib/src/org/bridgedb/webservice/biomart/util
Files:
1 added
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/corelib/src/org/bridgedb/webservice/biomart/util/Dataset.java

    r134 r161  
    1616// 
    1717 
    18 package org.bridgedb.webservice.biomart; 
     18package org.bridgedb.webservice.biomart.util; 
    1919 
    2020/** 
     
    5151     * @return dataset display name 
    5252     */ 
    53     public String getDisplyName() { 
     53    public String displayName() { 
    5454        return displayName; 
    5555    } 
     
    6767     */ 
    6868    public String toString() { 
    69         return getDisplyName(); 
     69        return displayName(); 
    7070    } 
    7171