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

org.openxma.hbmfilemerge.XmlElementAttributeDto Maven / Gradle / Ivy

There is a newer version: 6.0.2
Show newest version
package org.openxma.hbmfilemerge;

/**
 * a simple dto to hold the name and the value of an xml element attribute
 *
 * @author s4676
 */
public class XmlElementAttributeDto {

    private String _name, _value;

    public XmlElementAttributeDto(String relevantIdText, String relevantIdAttr) {
        super();
        _name = relevantIdText;
        _value = relevantIdAttr;
    }

    public String getRelevantIdText() {
        return _name;
    }

    public String getRelevantIdAttr() {
        return _value;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy