![JAR search and dependency download from the Maven repository](/logo.png)
org.cybergarage.xml.Attribute Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of upnp-stack Show documentation
Show all versions of upnp-stack Show documentation
A pure Java Open Source implementation of the UPnP stack for JDK 1.4 or above
The newest version!
/******************************************************************
*
* CyberXML for Java
*
* Copyright (C) Satoshi Konno 2002
*
* File: Attribute.java
*
* Revision;
*
* 11/27/02
* - first revision.
*
******************************************************************/
package org.cybergarage.xml;
public class Attribute
{
private String name = new String();
private String value = new String();
public Attribute()
{
}
public Attribute(String name, String value)
{
setName(name);
setValue(value);
}
////////////////////////////////////////////////
// name
////////////////////////////////////////////////
public void setName(String name)
{
this.name = name;
}
public String getName()
{
return name;
}
////////////////////////////////////////////////
// value
////////////////////////////////////////////////
public void setValue(String value)
{
this.value = value;
}
public String getValue()
{
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy