Ejemplo n.º 1
0
 public static void SetRawAttributes(Element/*!*/ self, Object/*!*/ rawAttributes)
 {
     self.GetData<ElementData>().Attr = rawAttributes;
 }
Ejemplo n.º 2
0
 public static void SetChildren(Element/*!*/ self, IList<Object>/*!*/ children)
 {
     self.GetData<ElementData>().Children = children;
 }
Ejemplo n.º 3
0
 public static void SetEtag(Element/*!*/ self, IHpricotDataContainer/*!*/ etag)
 {
     self.GetData<ElementData>().ETag = etag;
 }
Ejemplo n.º 4
0
 public static Object GetRawAttributes(Element/*!*/ self)
 {
     return self.GetData<ElementData>().Attr;
 }
Ejemplo n.º 5
0
 public static MutableString GetRawString(Element/*!*/ self)
 {
     return self.GetData<ElementData>().Raw;
 }
Ejemplo n.º 6
0
 public static IList<Object> GetChildren(Element/*!*/ self)
 {
     return self.GetData<ElementData>().Children;
 }
Ejemplo n.º 7
0
 public static IHpricotDataContainer GetEtag(Element/*!*/ self)
 {
     return self.GetData<ElementData>().ETag;
 }
Ejemplo n.º 8
0
 public static void SetEtag(Element /*!*/ self, IHpricotDataContainer /*!*/ etag)
 {
     self.GetData <ElementData>().ETag = etag;
 }
Ejemplo n.º 9
0
 public static bool ClearRaw(Element/*!*/ self)
 {
     self.GetData<ElementData>().Raw = null;
     return true;
 }
Ejemplo n.º 10
0
 public static void SetChildren(Element /*!*/ self, IList <Object> /*!*/ children)
 {
     self.GetData <ElementData>().Children = children;
 }
Ejemplo n.º 11
0
 public static IHpricotDataContainer GetEtag(Element /*!*/ self)
 {
     return(self.GetData <ElementData>().ETag);
 }
Ejemplo n.º 12
0
 public static IList <Object> GetChildren(Element /*!*/ self)
 {
     return(self.GetData <ElementData>().Children);
 }
Ejemplo n.º 13
0
 public static void SetRawAttributes(Element /*!*/ self, Object /*!*/ rawAttributes)
 {
     self.GetData <ElementData>().Attr = rawAttributes;
 }
Ejemplo n.º 14
0
 public static Object GetRawAttributes(Element /*!*/ self)
 {
     return(self.GetData <ElementData>().Attr);
 }
Ejemplo n.º 15
0
 public static bool ClearRaw(Element /*!*/ self)
 {
     self.GetData <ElementData>().Raw = null;
     return(true);
 }
Ejemplo n.º 16
0
 public static MutableString GetRawString(Element /*!*/ self)
 {
     return(self.GetData <ElementData>().Raw);
 }