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

org.nohope.jaxb2.plugin.metadata.PasstroughGetter Maven / Gradle / Ivy

There is a newer version: 0.2.3
Show newest version
package org.nohope.jaxb2.plugin.metadata;

/**
 * @author Ketoth Xupack
 * @since 2013-10-30 17:57
 */
public class PasstroughGetter implements IValueGetter {
    private final R value;

    public PasstroughGetter(final R value) {
        this.value = value;
    }

    @Override
    public R get() throws Exception {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy