Skip to main content
summaryrefslogtreecommitdiffstats
blob: b9155f478a3332df98f69ecb5677cc2a60962dce (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*******************************************************************************
 * Copyright (c) 2001, 2004 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
 *     Jens Lukowski/Innoopract - initial renaming/restructuring
 *     
 *******************************************************************************/
package org.eclipse.wst.dtd.core;

import org.eclipse.swt.graphics.Image;
import org.eclipse.wst.dtd.core.internal.DTDCorePlugin;
import org.eclipse.wst.dtd.core.parser.DTDRegionTypes;
import org.eclipse.wst.sse.core.text.IStructuredDocumentRegion;
import org.eclipse.wst.sse.core.text.ITextRegion;


public abstract class CMRepeatableNode extends CMNode {

	public static final char ONCE = '1';
	public static final char ONE_OR_MORE = '+';
	public static final char OPTIONAL = '?';
	public static final char ZERO_OR_MORE = '*';


	public CMRepeatableNode(DTDFile file, IStructuredDocumentRegion flatNode) {
		super(file, flatNode);
	}

	public Image getImage() {
		DTDCorePlugin resourcePlugin = DTDCorePlugin.getInstance();
		return resourcePlugin.getImage(DTDResource.ELEMENTREFICON);
	}

	public char getOccurrence() {
		ITextRegion occurRegion = getOccurrenceRegion();
		if (occurRegion != null && occurRegion.getType() == DTDRegionTypes.OCCUR_TYPE) {
			return getStructuredDTDDocumentRegion().getText(occurRegion).charAt(0);
		}
		return CMRepeatableNode.ONCE;
	}

	// returns the occurrenceregion, or the last region where the occurrence
	// region should appear after
	abstract public ITextRegion getOccurrenceRegion();

	public void setOccurrence(char occurrence) {
		beginRecording(this, DTDCorePlugin.getDTDString("_UI_LABEL_CM_REP_NODE_CHG_OCCUR")); //$NON-NLS-1$
		setOccurrence(this, occurrence);
		endRecording(this);
	}

	public void setOccurrence(Object requestor, char occurrence) {
		if (getOccurrence() != occurrence) {
			ITextRegion region = getOccurrenceRegion();
			if (region != null) {
				if (region.getType().equals(DTDRegionTypes.OCCUR_TYPE)) {
					if (occurrence == CMRepeatableNode.ONCE) {
						// we need to remove the occur region from the flat
						// model;
						getDTDFile().getStructuredDocument().replaceText(requestor, getStructuredDTDDocumentRegion().getStartOffset(region), 1, ""); //$NON-NLS-1$
					} else {
						//            Region oldOccur = region.createCopy();
						getDTDFile().getStructuredDocument().replaceText(requestor, getStructuredDTDDocumentRegion().getStartOffset(region), 1, String.valueOf(occurrence));
						//            changeStructuredDocument(oldOccur, region);
					}
				} else if (occurrence != CMRepeatableNode.ONCE) {
					//          System.out.println(getString());
					// we need to create an occurrenceRegion
					replaceText(requestor, getStructuredDTDDocumentRegion().getEndOffset(region), 0, String.valueOf(occurrence));
				}
			}
		}
	}

}// CMRepeatableNode

Back to the top