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

org.xillium.base.util.XilliumProperty Maven / Gradle / Ivy

package org.xillium.base.util;


/**
 * A property to be inserted into a Properties by the assembler.
 */
public class XilliumProperty {
    final String key, value;

    /**
     * Constructs a XilliumProperty from a key and a value.
     *
     * @param k the key of the property
     * @param v the value of the property
     */
    public XilliumProperty(String k, String v) {
        key = k;
        value = v;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy