@@ -99,9 +99,9 @@ abstract class MetaData
9999 * Gets value of unqualified (unprefixed) attribute with given key, null if not found
100100 *
101101 * @param key
102- * @return value as Seq[Node] if key is found, null otherwise
102+ * @return value as collection. Seq[Node] if key is found, null otherwise
103103 */
104- def apply (key : String ): Seq [Node ]
104+ def apply (key : String ): collection. Seq [Node ]
105105
106106 /**
107107 * convenience method, same as `apply(namespace, owner.scope, key)`.
@@ -110,7 +110,7 @@ abstract class MetaData
110110 * @param owner the element owning this attribute list
111111 * @param key the attribute key
112112 */
113- final def apply (namespace_uri : String , owner : Node , key : String ): Seq [Node ] =
113+ final def apply (namespace_uri : String , owner : Node , key : String ): collection. Seq [Node ] =
114114 apply(namespace_uri, owner.scope, key)
115115
116116 /**
@@ -119,9 +119,9 @@ abstract class MetaData
119119 * @param namespace_uri namespace uri of key
120120 * @param scp a namespace scp (usually of the element owning this attribute list)
121121 * @param k to be looked for
122- * @return value as Seq[Node] if key is found, null otherwise
122+ * @return value as collection. Seq[Node] if key is found, null otherwise
123123 */
124- def apply (namespace_uri : String , scp : NamespaceBinding , k : String ): Seq [Node ]
124+ def apply (namespace_uri : String , scp : NamespaceBinding , k : String ): collection. Seq [Node ]
125125
126126 /**
127127 * returns a copy of this MetaData item with next field set to argument.
@@ -147,7 +147,7 @@ abstract class MetaData
147147 case m : MetaData => this .asAttrMap == m.asAttrMap
148148 case _ => false
149149 }
150- protected def basisForHashCode : Seq [Any ] = List (this .asAttrMap)
150+ protected def basisForHashCode : collection. Seq [Any ] = List (this .asAttrMap)
151151
152152 /** filters this sequence of meta data */
153153 override def filter (f : MetaData => Boolean ): MetaData =
@@ -158,7 +158,7 @@ abstract class MetaData
158158 def key : String
159159
160160 /** returns value of this MetaData item */
161- def value : Seq [Node ]
161+ def value : collection. Seq [Node ]
162162
163163 /**
164164 * Returns a String containing "prefix:key" if the first key is
@@ -182,12 +182,12 @@ abstract class MetaData
182182 * Gets value of unqualified (unprefixed) attribute with given key, None if not found
183183 *
184184 * @param key
185- * @return value in Some(Seq[Node]) if key is found, None otherwise
185+ * @return value in Some(collection. Seq[Node]) if key is found, None otherwise
186186 */
187- final def get (key : String ): Option [Seq [Node ]] = Option (apply(key))
187+ final def get (key : String ): Option [collection. Seq [Node ]] = Option (apply(key))
188188
189189 /** same as get(uri, owner.scope, key) */
190- final def get (uri : String , owner : Node , key : String ): Option [Seq [Node ]] =
190+ final def get (uri : String , owner : Node , key : String ): Option [collection. Seq [Node ]] =
191191 get(uri, owner.scope, key)
192192
193193 /**
@@ -196,9 +196,9 @@ abstract class MetaData
196196 * @param uri namespace of key
197197 * @param scope a namespace scp (usually of the element owning this attribute list)
198198 * @param key to be looked fore
199- * @return value as Some[Seq[Node]] if key is found, None otherwise
199+ * @return value as Some[collection. Seq[Node]] if key is found, None otherwise
200200 */
201- final def get (uri : String , scope : NamespaceBinding , key : String ): Option [Seq [Node ]] =
201+ final def get (uri : String , scope : NamespaceBinding , key : String ): Option [collection. Seq [Node ]] =
202202 Option (apply(uri, scope, key))
203203
204204 protected def toString1 (): String = sbToString(toString1)
0 commit comments