Skip to main content
summaryrefslogtreecommitdiffstats
blob: 106ae66129d7d7bd2213c9ec3b50d6734d310013 (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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/*******************************************************************************
 * Copyright (c) 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
 *******************************************************************************/
package org.eclipse.wst.css.core.internal.document;



import org.eclipse.wst.css.core.internal.provisional.document.ICSSNode;
import org.eclipse.wst.css.core.internal.provisional.document.ICounter;
import org.w3c.dom.DOMException;
import org.w3c.dom.css.Counter;


/**
 * 
 */
class CounterImpl extends CSSPrimitiveContainer implements ICounter {

	/**
	 * 
	 */
	CounterImpl() {
		super(CSS_COUNTER);
	}

	CounterImpl(CounterImpl that) {
		super(that);
	}

	/**
	 * @return org.eclipse.wst.css.core.model.interfaces.ICSSNode
	 * @param deep
	 *            boolean
	 */
	public ICSSNode cloneNode(boolean deep) {
		CounterImpl cloned = new CounterImpl(this);

		if (deep)
			cloneChildNodes(cloned, deep);

		return cloned;
	}

	/**
	 * This method is used to get the Counter value. If this CSS value doesn't
	 * contain a counter value, a <code>DOMException</code> is raised.
	 * Modification to the corresponding style property can be achieved using
	 * the <code>Counter</code> interface.
	 * 
	 * @return The Counter value.
	 * @exception DOMException
	 *                INVALID_ACCESS_ERR: Raised if the CSS value doesn't
	 *                contain a Counter value (e.g. this is not
	 *                <code>CSS_COUNTER</code>).
	 */
	public Counter getCounterValue() throws DOMException {
		return this;
	}

	/**
	 * This attribute is used for the identifier of the counter.
	 */
	public String getIdentifier() {
		return getAttribute(IDENTIFIER);
	}

	/**
	 * This attribute is used for the style of the list.
	 */
	public String getListStyle() {
		return getAttribute(LISTSTYLE);
	}

	/**
	 * This attribute is used for the separator of the nested counters.
	 */
	public String getSeparator() {
		return getAttribute(SEPARATOR);
	}

	/**
	 * 
	 */
	protected void initPrimitives() {
		return;
	}

	/**
	 * @param identifier
	 *            java.lang.String
	 * @exception org.w3c.dom.DOMException
	 *                The exception description.
	 */
	public void setIdentifier(String identifier) throws DOMException {
		setAttribute(IDENTIFIER, identifier);
	}

	/**
	 * @param listStyle
	 *            java.lang.String
	 * @exception org.w3c.dom.DOMException
	 *                The exception description.
	 */
	public void setListStyle(String listStyle) throws DOMException {
		setAttribute(LISTSTYLE, listStyle);
	}

	/**
	 * @param Separator
	 *            java.lang.String
	 * @exception org.w3c.dom.DOMException
	 *                The exception description.
	 */
	public void setSeparator(String Separator) throws org.w3c.dom.DOMException {
		setAttribute(SEPARATOR, Separator);
	}
}

Back to the top