public static void SetContent(ProcedureInstruction /*!*/ self, MutableString /*!*/ content)
 {
     self.GetData <AttributeData>().Attr = content;
 }
Exemplo n.º 2
0
 public static void SetContent(ProcedureInstruction/*!*/ self, MutableString/*!*/ content)
 {
     self.GetData<AttributeData>().Attr = content;
 }
 public static MutableString GetContent(ProcedureInstruction /*!*/ self)
 {
     return(self.GetData <AttributeData>().AttrAsMutableString);
 }
Exemplo n.º 4
0
 public static MutableString GetContent(ProcedureInstruction/*!*/ self)
 {
     return self.GetData<AttributeData>().AttrAsMutableString;
 }