I am trying to manipulate the DOM extensively from my Gwt code. In the process I discovered two groups of classes implementing a common base interface e.g..
interface DivBuilder
class HtmlDivBuilder implements DivBuilder
class DOMDivBuilder implements DivBuilder
for each and every Html tag there are two such sets of classes implemented
I am confused as to what is the purpose and use behind this.
Any pointers shall be helpful .