blob: 6e6c7e52871c74117f1a4addaeb5f94b5670e908 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.xsd.ui.internal.actions;
// issue (cs) remove this
/**
* @version 1.0
* @author
*/
public class DOMAttribute
{
/**
* Constructor for DOMAttribute.
*/
public DOMAttribute()
{
super();
}
/**
* Constructor for DOMAttribute.
*/
public DOMAttribute(String name, String value)
{
super();
this.name = name;
this.value = value;
}
protected String name, value;
/**
* Gets the value.
* @return Returns a String
*/
public String getValue()
{
return value;
}
/**
* Sets the value.
* @param value The value to set
*/
public void setValue(String value)
{
this.value = value;
}
/**
* Gets the name.
* @return Returns a String
*/
public String getName()
{
return name;
}
/**
* Sets the name.
* @param name The name to set
*/
public void setName(String name)
{
this.name = name;
}
}