package it.cavallium.strangedb; public class VariableWrapper { public T var; public VariableWrapper(T value) { this.var = value; } }