MCPcopy Index your code
hub / github.com/Garten/sourcecraft / RunnableWith

Interface RunnableWith

src/basic/RunnableWith.java:5–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import periphery.Place;
4
5public interface RunnableWith<Argument> {
6
7 public static final RunnableWith<String> INSTANCE = argument -> {
8 // do nothing
9 };
10
11 public static final RunnableWith<Place> INSTANCE_PLACE = argument -> {
12 // do nothing
13 };
14
15 public abstract void run(Argument argument);
16}

Callers

nothing calls this directly

Implementers 2

GuiLogicsrc/main/GuiLogic.java
RunnableEmptysrc/basic/RunnableEmpty.java

Calls

no outgoing calls

Tested by

no test coverage detected