| 
 | 
          Scala 1.3.0.7 | |||
| Field Summary | |
| 
        final | val Empty: AttributeSeq | 
| Method Summary | |
| 
        final | def fromAttrs(as: Attribute*): AttributeSeqconstruct from sequence of Attribute. | 
| 
        final | def fromAttrs(ns: String, as: Attribute*): AttributeSeqconstruct from sequence of Attribute, fixing namespaces to ns Each Attribute with an empty namespace will get the namespace ns. | 
| 
        final | def fromMap(as: Map[Tuple2[String,String],String]): AttributeSeqconstruct an attribute sequence from a map | 
| 
        final | def fromMap(ns: String, as: Map[Tuple2[String,String],String]): AttributeSeqconstruct from a map, fixing namespacePs to ns each Attribute with an empty namespace will get the namespace ns. | 
| 
        final | def fromUMap(as: Map[UName,String]): AttributeSeqconstruct an attribute sequence from a map | 
| Field Detail | 
final val Empty: AttributeSeq
| Method Detail | 
final def fromMap(as: Map[Tuple2[String,String],String]): AttributeSeq
as - 
  a map from Pair(uri,key) to value
   
  final def fromMap(ns: String, as: Map[Tuple2[String,String],String]): AttributeSeq
ns - 
  the namespace to use instead of the empty one
  as - 
  a map from Pair(uri,key) to value
   
  final def fromUMap(as: Map[UName,String]): AttributeSeq
as - 
  a map from Pair(uri,key) to value
   
  final def fromAttrs(as: Attribute*): AttributeSeq
as - 
  any sequence of attributes a1,a2,...
   
  final def fromAttrs(ns: String, as: Attribute*): AttributeSeq
ns - 
  the namespace to use instead of the empty one
  as - 
  any sequence of attributes a1,a2,...
   
  | 
 | 
          Scala 1.3.0.7 | |||