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

com.malinskiy.sheldon.codegen.model.DefaultValue Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
package com.malinskiy.sheldon.codegen.model;

import javax.annotation.Nonnull;
import javax.lang.model.element.VariableElement;

public class DefaultValue {

    @Nonnull private VariableElement element;
    @Nonnull private String prefName;

    public DefaultValue(@Nonnull VariableElement element,
                        @Nonnull String prefName) {

        this.element = element;
        this.prefName = prefName;
    }

    @Nonnull public VariableElement getElement() {
        return element;
    }

    @Nonnull public String getPrefName() {
        return prefName;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy