Beispiel #1
0
			internal virtual void Add(Rhino.Xmlimpl.XmlNode.InternalList other)
			{
				for (int i = 0; i < other.Length(); i++)
				{
					_add(other.Item(i));
				}
			}
Beispiel #2
0
			internal virtual void Add(Rhino.Xmlimpl.XmlNode.InternalList from, int startInclusive, int endExclusive)
			{
				for (int i = startInclusive; i < endExclusive; i++)
				{
					_add(from.Item(i));
				}
			}
Beispiel #3
0
		private XML GetXML(Rhino.Xmlimpl.XmlNode.InternalList _annos, int index)
		{
			if (index >= 0 && index < Length())
			{
				return XmlFromNode(_annos.Item(index));
			}
			else
			{
				return null;
			}
		}