
com.zuunr.json.util.Subtask Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json Show documentation
Show all versions of json Show documentation
Immutable JSON representation in Java
package com.zuunr.json.util;
import com.zuunr.json.JsonValue;
import com.zuunr.json.util.Task;
/**
* @author Niklas Eldberger
*/
public final class Subtask {
final V context;
final private Task task;
public Subtask(V context, Task task) {
this.context = context;
this.task = task;
}
public Task getTask() {
return task;
}
public V getContext() {
return context;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy