Added @override annotations
This commit is contained in:
parent
cb01b886dc
commit
ed07bd5819
@ -90,16 +90,19 @@ public abstract class AbstractAsset implements GetJson, Asset {
|
|||||||
formatter = new DecimalFormat(fs);
|
formatter = new DecimalFormat(fs);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
public final int getDecimals() {
|
public final int getDecimals() {
|
||||||
return decimals;
|
return decimals;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
public abstract String getTypeName();
|
public abstract String getTypeName();
|
||||||
|
|
||||||
protected void setDescription(String description) {
|
protected void setDescription(String description) {
|
||||||
this.description = description;
|
this.description = description;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
public final String getSymbol() {
|
public final String getSymbol() {
|
||||||
return symbol;
|
return symbol;
|
||||||
}
|
}
|
||||||
@ -120,10 +123,12 @@ public abstract class AbstractAsset implements GetJson, Asset {
|
|||||||
return description;
|
return description;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
public boolean isCurrency() {
|
public boolean isCurrency() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
public boolean isAsset() {
|
public boolean isAsset() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user