Exemple #1
0
		private DomNotation(nsIDOMNotation domNotation)
			: base(domNotation)
		{
			Debug.Assert(domNotation != null);
			m_DomNotation = domNotation;
		}
Exemple #2
0
		internal static DomNotation Create(nsIDOMNotation domNotation)
		{
			return domNotation != null ? new DomNotation(domNotation) : null;
		}