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

jp.vmi.junit.result.Property Maven / Gradle / Ivy

package jp.vmi.junit.result;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;

/**
 * property element.
 */
@XmlAccessorType(XmlAccessType.FIELD)
class Property {

    @XmlAttribute
    private String name;

    @XmlAttribute
    private String value;

    public Property() {
    }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy