package org.warp.commonutils.type; public class VariableWrapper { public volatile T var; public VariableWrapper(T value) { this.var = value; } }