All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.codename1.util.Wrapper Maven / Gradle / Ivy

There is a newer version: 7.0.161
Show newest version
package com.codename1.util;

/**
 * Generic object wrapper, as workaround for the issue "Local variables
 * referenced from a lambda expression must be final or effectively final".
 */
public class Wrapper {
    
    private T object;
    
    public Wrapper(T obj) {
        this.object = obj;
    }

    public T get() {
        return object;
    }
    
    public void set(T obj) {
        this.object = obj;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy