//--------------------------------------
//               PowerUI
//
//        For documentation or 
//    if you have any issues, visit
//        powerUI.kulestar.com
//
//    Copyright  2013 Kulestar Ltd
//          www.kulestar.com
//--------------------------------------

using System;
using System.Collections;
using System.Collections.Generic;


namespace Dom{
	
	/// <summary>
	/// Sometimes more than one element has the same attribute.
	/// When that happens, they end up as a linked list. This is one of the links.
	/// </summary>
	
	public class AttributeLookupLink{
		
		/// <summary>The element.</summary>
		public Dom.Element Element;
		/// <summary>The link after this one.</summary>
		public AttributeLookupLink Next;
		
		
		public AttributeLookupLink(Element element){
			Element=element;
		}
		
	}
	
}