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

javax.el.ValueReference Maven / Gradle / Ivy

package javax.el;

import java.io.Serializable;

/**
 * This encapsulates a base model object and one of its properties.
 *
 * @since EL 2.2
 */

public class ValueReference implements Serializable {

    private Object base;
    private Object property;

    public ValueReference(Object base, Object property) {

        this.base = base;
        this.property = property;
    }

    public Object getBase() {
        return base;
    }

    public Object getProperty() {
        return property;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy