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

jpaoletti.jpm.util.Property Maven / Gradle / Ivy

The newest version!
package jpaoletti.jpm.util;

/**
 * Name-Value
 *
 * @author jpaoletti
 * @since 22/09/2011
 * @version 1.0
 *
 */
public class Property {

    private String name;
    private String value;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy