Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d04bc8578cdd761f1577a56618ad95e2490e3014 (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
/*******************************************************************************
 * Copyright (c) 2004, 2008 John Krasnay 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:
 *     John Krasnay - initial API and implementation
 *******************************************************************************/
package org.eclipse.wst.xml.vex.core.internal.css;

import org.eclipse.wst.xml.vex.core.internal.dom.Element;
import org.w3c.css.sac.LexicalUnit;

/**
 * The CSS text-align property.
 */
public class TextAlignProperty extends AbstractProperty {

	/**
	 * Class constructor
	 */
	public TextAlignProperty() {
		super(CSS.TEXT_ALIGN);
	}

	public Object calculate(LexicalUnit lu, Styles parentStyles, Styles styles, Element element) {
		if (TextAlignProperty.isTextAlign(lu)) {
			return lu.getStringValue();
		} else {
			// not specified, "inherit", or some other value
			if (parentStyles != null) {
				return parentStyles.getTextAlign();
			} else {
				return CSS.LEFT;
			}
		}

	}

	// =================================================== PRIVATE

	private static boolean isTextAlign(LexicalUnit lu) {
		if (lu == null) {
			return false;
		} else if (lu.getLexicalUnitType() == LexicalUnit.SAC_IDENT) {
			return true;
		} else {
			return false;
		}
	}

}

Back to the top