Commit a1e43d9c authored by Tobias Meuser's avatar Tobias Meuser
Browse files

Changed all cache entries to PointInformation

parent 9c5fc670
...@@ -23,11 +23,12 @@ package de.tudarmstadt.maki.simonstrator.api.component.vehicular.caching; ...@@ -23,11 +23,12 @@ package de.tudarmstadt.maki.simonstrator.api.component.vehicular.caching;
import java.util.List; import java.util.List;
import de.tudarmstadt.maki.simonstrator.api.component.HostComponent; import de.tudarmstadt.maki.simonstrator.api.component.HostComponent;
import de.tudarmstadt.maki.simonstrator.api.component.vehicular.information.PointInformation;
public interface CachingComponent extends HostComponent { public interface CachingComponent extends HostComponent {
<T extends Object> List<T> getCacheEntries(Class<T> pCacheEntryClass); <T extends PointInformation> List<T> getCacheEntries(Class<T> pCacheEntryClass);
<T extends Object> boolean containsEntry(T pCacheEntry); <T extends PointInformation> boolean containsEntry(T pCacheEntry);
<T extends Object> void storeCacheEntry(T pCacheEntry); <T extends PointInformation> void storeCacheEntry(T pCacheEntry);
} }
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment