/*
* Created on Dec 8, 2003
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package org.xdev.base.xssl.text.xml;
import java.util.HashMap;
import org.jdom.Attribute;
/**
* @author AYegorov
*
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
public class XmlName extends AbstractXmlAttribute {
/**
* @param id
*/
public XmlName(String id) {
super(id);
// TODO Auto-generated constructor stub
}
/**
* @param id
* @param properties
*/
public XmlName(String id, HashMap properties) {
super(id, properties);
// TODO Auto-generated constructor stub
}
/* (non-Javadoc)
* @see org.xdev.base.transaction.xml.AbstractXmlAttribute#processAttribute(org.jdom.Attribute)
*/
protected Object processAttribute(Attribute attr) throws Exception {
// TODO Auto-generated method stub
return attr.getName();
}
}
|