White noise: adding some missing @Override
This commit is contained in:
parent
2f7a191cdb
commit
b0c26e11a5
|
@ -22,8 +22,10 @@ import java.util.List;
|
||||||
|
|
||||||
public interface EntityContainer extends org.apache.olingo.client.api.edm.xml.EntityContainer {
|
public interface EntityContainer extends org.apache.olingo.client.api.edm.xml.EntityContainer {
|
||||||
|
|
||||||
|
@Override
|
||||||
EntitySet getEntitySet(String name);
|
EntitySet getEntitySet(String name);
|
||||||
|
|
||||||
|
@Override
|
||||||
List<EntitySet> getEntitySets();
|
List<EntitySet> getEntitySets();
|
||||||
|
|
||||||
List<Singleton> getSingletons();
|
List<Singleton> getSingletons();
|
||||||
|
@ -36,9 +38,12 @@ public interface EntityContainer extends org.apache.olingo.client.api.edm.xml.En
|
||||||
|
|
||||||
List<ActionImport> getActionImports();
|
List<ActionImport> getActionImports();
|
||||||
|
|
||||||
|
@Override
|
||||||
FunctionImport getFunctionImport(String name);
|
FunctionImport getFunctionImport(String name);
|
||||||
|
|
||||||
|
@Override
|
||||||
List<FunctionImport> getFunctionImports(String name);
|
List<FunctionImport> getFunctionImports(String name);
|
||||||
|
|
||||||
|
@Override
|
||||||
List<FunctionImport> getFunctionImports();
|
List<FunctionImport> getFunctionImports();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue