kattr.java

来自「A framework written in Java for implemen」· Java 代码 · 共 81 行

JAVA
81
字号
// Copyright (c) 2004  Per M.A. Bothner.// This is free software;  for terms and warranty disclaimer see ./COPYING.package gnu.kawa.xml;import gnu.xml.*;/* #ifdef use:org.w3c.dom.Node */// import org.w3c.dom.*;/* #endif */public class KAttr extends KNode  /* #ifdef use:org.w3c.dom.Node */  // implements org.w3c.dom.Attr  /* #endif */{  public KAttr (NodeTree seq, int ipos)  {    super(seq, ipos);  }   public String getName ()  {    return sequence.getNextTypeName(ipos);  }  /* #ifdef use:org.w3c.dom.Node */  // public short getNodeType () { return Node.ATTRIBUTE_NODE; }  /* #endif */  public String getValue ()  {    return getNodeValue();  }  public static Object getObjectValue (NodeTree sequence, int ipos)  {    return sequence.getPosNext(ipos+10);  }  /** Get attribute value as (typed) Object, rather than string. */  public Object getObjectValue ()  {    return getObjectValue((NodeTree) sequence, ipos);  }  /* #ifdef use:org.w3c.dom.Node */  // public void setValue (String value)  //   throws DOMException  // {  //   throw new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR,  //                          "setValue not supported");  // }  // public Node getParentNode()  // {  //   return null;  // }  // public Element  getOwnerElement ()  // {  //   return (Element) super.getParentNode();  // }  /* #endif */  public boolean getSpecified ()  {    return true;  }  /* #ifdef JAXP-1.3 */  // public TypeInfo getSchemaTypeInfo ()  // {  //   return null;  // }  // public boolean isId ()  // {  //   return false;  // }  /* #endif JAXP-1.3 */}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?