com.jpattern.core.xml.IXmlAttribute Maven / Gradle / Ivy
package com.jpattern.core.xml;
import java.io.Serializable;
/**
*
* @author Francesco Cina'
*
* 16/giu/2010
*/
public interface IXmlAttribute extends Serializable {
String getName();
void setName(String name);
String getValue();
void setValue(String value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy