Package org.apache.garbage.tree

Examples of org.apache.garbage.tree.Attribute


* Parse an attribute (<code>name = &quot;...&quot;</code>) inside an element
* declaration.
*/
  final public void p_attribute(ElementStart element) throws ParseException {
  String name = null;
  Attribute attribute = null;
    jj_consume_token(T_ATTRIBUTE);
    attribute = new Attribute(this, token.image.trim());
    p_attribute_data(attribute);
    element.put(attribute);
    token_source.SwitchTo(ELEMENT);
  }
View Full Code Here

TOP

Related Classes of org.apache.garbage.tree.Attribute

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.