Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Simonstrator
API
Commits
7a87c60f
Commit
7a87c60f
authored
Aug 31, 2017
by
Tobias Meuser
Browse files
Let CachingComponent extend HostComponent
parent
972257b8
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/de/tudarmstadt/maki/simonstrator/api/component/vehicular/CachingComponent.java
View file @
7a87c60f
...
...
@@ -22,7 +22,9 @@ package de.tudarmstadt.maki.simonstrator.api.component.vehicular;
import
java.util.List
;
public
interface
CachingComponent
{
import
de.tudarmstadt.maki.simonstrator.api.component.HostComponent
;
public
interface
CachingComponent
extends
HostComponent
{
<
T
extends
Object
>
List
<
T
>
getCacheEntries
(
Class
<
T
>
pCacheEntryClass
);
<
T
extends
Object
>
void
storeCacheEntry
(
T
pCacheEntry
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment