1 11 package org.eclipse.pde.internal.ui.compare; 12 13 import java.util.HashMap ; 14 15 import org.eclipse.jface.text.IDocument; 16 17 18 public class XMLChildren extends XMLNode { 19 20 public int children; public HashMap childElements; 23 public XMLChildren(String XMLType, String id, String value, String signature, IDocument doc, int start, int length) { 24 super(XMLType, id, value, signature, doc, start, length); 25 children= 0; 26 childElements = new HashMap (); 27 } 28 } 29 30 | Popular Tags |