XmlName.java :  » XML » activexml » org » xdev » base » xssl » text » xml » Java Open Source

Java Open Source » XML » activexml 
activexml » org » xdev » base » xssl » text » xml » XmlName.java
/*
 * 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();
  }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.