blob: eebe91731ee8657961bd2123322e474c68227da7 [file] [log] [blame]
nitind958d79a2004-11-23 19:23:00 +00001/*******************************************************************************
amywu923ee602007-04-10 18:32:07 +00002 * Copyright (c) 2004, 2005 IBM Corporation and others.
nitind958d79a2004-11-23 19:23:00 +00003 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
amywu923ee602007-04-10 18:32:07 +00007 *
nitind958d79a2004-11-23 19:23:00 +00008 * Contributors:
9 * IBM Corporation - initial API and implementation
10 *******************************************************************************/
david_williams63219a22005-04-10 01:59:51 +000011package org.eclipse.wst.css.core.internal.metamodelimpl;
nitind958d79a2004-11-23 19:23:00 +000012
13public class CSSMMPseudoElementImpl extends CSSMMSelectorImpl {
14
15
16 /**
17 * Constructor for CSSMMPseudoElementImpl.
18 */
19 public CSSMMPseudoElementImpl() {
20 super();
21 }
22
23 /*
24 * @see CSSMMSelector#getSelectorType()
25 */
26 public String getSelectorType() {
27 return TYPE_PSEUDO_ELEMENT;
28 }
29
30 void setSelectorString(String value) {
31 fValue = ":" + value; //$NON-NLS-1$
32 }
amywu923ee602007-04-10 18:32:07 +000033}