public static Object GetSystemId(DocumentType/*!*/ self) { var data = self.GetData<AttributeData>(); if (data.AttrIsEmpty) { return null; } Object value; data.AttrAsHash.TryGetValue(self._systemId, out value); return value; }
public static MutableString GetTarget(DocumentType/*!*/ self) { return self._data.Tag; }
public static void SetTarget(DocumentType/*!*/ self, MutableString/*!*/ target) { self._data.Tag = target; }
public static void SetSystemId(RubyContext context/*!*/, DocumentType/*!*/ self, Object/*!*/ systemId) { var data = self.GetData<AttributeData>(); if (data.AttrIsEmpty) { data.Attr = new Hash(context); } data.AttrAsHash[self._systemId] = systemId; }
public static void SetTarget(DocumentType /*!*/ self, MutableString /*!*/ target) { self._data.Tag = target; }
public static MutableString GetTarget(DocumentType /*!*/ self) { return(self._data.Tag); }