Use "abbreviation" instead of "abbreviatedName" for labels

Change-Id: I22b8c9e4323d73caa02f2768d74ab5f0fa53cbed
This commit is contained in:
Dave Borowitz
2013-05-22 14:47:32 -07:00
parent f59de4205d
commit e7899c4072
7 changed files with 15 additions and 15 deletions

View File

@@ -93,7 +93,7 @@ public class LabelType {
protected String name;
protected String abbreviatedName;
protected String abbreviation;
protected String functionName;
protected boolean copyMinScore;
@@ -113,7 +113,7 @@ public class LabelType {
canOverride = true;
values = sortValues(valueList);
abbreviatedName = defaultAbbreviation(name);
abbreviation = defaultAbbreviation(name);
functionName = "MaxWithBlock";
maxNegative = Short.MIN_VALUE;
@@ -136,12 +136,12 @@ public class LabelType {
return psa.getLabelId().get().equalsIgnoreCase(name);
}
public String getAbbreviatedName() {
return abbreviatedName;
public String getAbbreviation() {
return abbreviation;
}
public void setAbbreviatedName(String abbreviatedName) {
this.abbreviatedName = abbreviatedName;
public void setAbbreviation(String abbreviation) {
this.abbreviation = abbreviation;
}
public String getFunctionName() {