summaryrefslogtreecommitdiff
path: root/src/library/scala/xml/UnprefixedAttribute.scala
blob: 82d30ac804ec8460c1eab8573a67db80e0c3cfb2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2002-2005, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |                                         **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */

// $Id$

package scala.xml;

/** unprefixed attributes have the null namespace
 */
class UnprefixedAttribute(val key: String, val value: String, val next: MetaData) extends MetaData {

  // verify that value is a proper attribute value (references, no <)
  Utility.checkAttributeValue(value) match {
    case null => ;
    case msg  => throw new MalformedAttributeException(msg);
  }

  /** returns a copy of this unprefixed attribute with the given next field*/
  def copy(next: MetaData) =
    new UnprefixedAttribute(key, value, next);

  def equals1(m:MetaData) =
    !m.isPrefixed && (m.key == key) && (m.value == value);

  /** returns null */
  final def getNamespace(owner: Node): String =
    null;

  /**
   * Gets value of unqualified (unprefixed) attribute with given key.
   *
   * @param  key
   * @return ..
   */
  def getValue(key: String): String =
    if (key == this.key) value else next.getValue(key);

  /**
   * Forwards the call to next.
   *
   * @param  namespace
   * @param  scope
   * @param  key
   * @return ..
   */
  def getValue(namespace: String, scope: NamespaceBinding, key: String): String =
    next.getValue(namespace, scope, key);

  override def hashCode() =
    key.hashCode() * 7 + value.hashCode() * 53 + next.hashCode();

  /** returns false */
  final def isPrefixed = false;

  def toString1(sb:StringBuffer): Unit = {
    sb.append(key);
    sb.append('=');
    Utility.appendQuoted(value, sb);
  }

  def wellformed(scope: NamespaceBinding): Boolean =
    (null == next.getValue(null, scope, key)) && next.wellformed(scope);

}