@@ -99,9 +99,9 @@ abstract class MetaData
99
99
* Gets value of unqualified (unprefixed) attribute with given key, null if not found
100
100
*
101
101
* @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
103
103
*/
104
- def apply (key : String ): Seq [Node ]
104
+ def apply (key : String ): collection. Seq [Node ]
105
105
106
106
/**
107
107
* convenience method, same as `apply(namespace, owner.scope, key)`.
@@ -110,7 +110,7 @@ abstract class MetaData
110
110
* @param owner the element owning this attribute list
111
111
* @param key the attribute key
112
112
*/
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 ] =
114
114
apply(namespace_uri, owner.scope, key)
115
115
116
116
/**
@@ -119,9 +119,9 @@ abstract class MetaData
119
119
* @param namespace_uri namespace uri of key
120
120
* @param scp a namespace scp (usually of the element owning this attribute list)
121
121
* @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
123
123
*/
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 ]
125
125
126
126
/**
127
127
* returns a copy of this MetaData item with next field set to argument.
@@ -147,7 +147,7 @@ abstract class MetaData
147
147
case m : MetaData => this .asAttrMap == m.asAttrMap
148
148
case _ => false
149
149
}
150
- protected def basisForHashCode : Seq [Any ] = List (this .asAttrMap)
150
+ protected def basisForHashCode : collection. Seq [Any ] = List (this .asAttrMap)
151
151
152
152
/** filters this sequence of meta data */
153
153
override def filter (f : MetaData => Boolean ): MetaData =
@@ -158,7 +158,7 @@ abstract class MetaData
158
158
def key : String
159
159
160
160
/** returns value of this MetaData item */
161
- def value : Seq [Node ]
161
+ def value : collection. Seq [Node ]
162
162
163
163
/**
164
164
* Returns a String containing "prefix:key" if the first key is
@@ -182,12 +182,12 @@ abstract class MetaData
182
182
* Gets value of unqualified (unprefixed) attribute with given key, None if not found
183
183
*
184
184
* @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
186
186
*/
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))
188
188
189
189
/** 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 ]] =
191
191
get(uri, owner.scope, key)
192
192
193
193
/**
@@ -196,9 +196,9 @@ abstract class MetaData
196
196
* @param uri namespace of key
197
197
* @param scope a namespace scp (usually of the element owning this attribute list)
198
198
* @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
200
200
*/
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 ]] =
202
202
Option (apply(uri, scope, key))
203
203
204
204
protected def toString1 (): String = sbToString(toString1)
0 commit comments