Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 300255b47bfdc27efd2c1c2dc14c5f6d6992326b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*******************************************************************************
 * Copyright (c) 2000, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.compare.examples.xml;

import java.util.HashMap;

import org.eclipse.jface.text.IDocument;

/** XMLNode that has children elements */
public class XMLChildren extends XMLNode {
	
	public int children;	// counts the number of children
	public HashMap childElements;	// maps the name of XML child elements to their # of occurence
	
	public XMLChildren(String XMLType, String id, String value, String signature, IDocument doc, int start, int length) {
		super(XMLType, id, value, signature, doc, start, length);
		children= 0;
		childElements = new HashMap();
	}
}

Back to the top