Package org.apache.lucene.gdata.gom.core

Examples of org.apache.lucene.gdata.gom.core.GOMAttributeImpl


   * @param aName
   *            attribute name
   * @return a GOMAttribute
   */
  public static GOMAttribute buildAtomAttribute(String aValue, String aName) {
    return new GOMAttributeImpl(GOMNamespace.ATOM_NS_URI,
        GOMNamespace.ATOM_NS_PREFIX, aName, aValue);
  }
View Full Code Here


   * @param aName
   * @return
   */
  public static GOMAttribute buildDefaultNamespaceAttribute(String aValue,
      String aName) {
    return new GOMAttributeImpl(aName, aValue);
  }
View Full Code Here

   * @param aName
   * @return
   */
  public static GOMAttribute buildXMLNamespaceAttribute(String aValue,
      String aName) {
    return new GOMAttributeImpl(GOMNamespace.XML_NS_URI,
        GOMNamespace.XML_NS_PREFIX, aName, aValue);
  }
View Full Code Here

TOP

Related Classes of org.apache.lucene.gdata.gom.core.GOMAttributeImpl

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.