java: add @Override annotation to overriding methods

Change-Id: I086964c6f6ce52c60c52b6dbc445d3c21d22c80a
This commit is contained in:
Noel Grandin
2014-08-06 08:55:09 +02:00
parent e2e55a7c49
commit 0477e6c39b
1317 changed files with 3116 additions and 15 deletions

View File

@@ -165,6 +165,7 @@ public class ParcelBrowseNode extends PropertySet
return BrowseNodeTypes.CONTAINER;
}
@Override
public String toString()
{
return getName();

View File

@@ -39,6 +39,7 @@ public class PkgProviderBrowseNode extends ProviderBrowseNode
}
@Override
public String getName() {
String name = "Unknown";
if ( container != null )

View File

@@ -157,6 +157,7 @@ public class ProviderBrowseNode extends PropertySet
return BrowseNodeTypes.CONTAINER;
}
@Override
public String toString()
{
return getName();

View File

@@ -137,6 +137,7 @@ public class ScriptBrowseNode extends PropertySet
return BrowseNodeTypes.SCRIPT;
}
@Override
public String toString() {
return getName();
}