Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.vex.core/src/org/eclipse/vex/core/internal/css/PseudoElement.java')
-rw-r--r--org.eclipse.vex.core/src/org/eclipse/vex/core/internal/css/PseudoElement.java54
1 files changed, 54 insertions, 0 deletions
diff --git a/org.eclipse.vex.core/src/org/eclipse/vex/core/internal/css/PseudoElement.java b/org.eclipse.vex.core/src/org/eclipse/vex/core/internal/css/PseudoElement.java
new file mode 100644
index 00000000..7173b4f0
--- /dev/null
+++ b/org.eclipse.vex.core/src/org/eclipse/vex/core/internal/css/PseudoElement.java
@@ -0,0 +1,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.vex.core.internal.css;
+
+import org.eclipse.vex.core.internal.dom.Element;
+
+/**
+ * Represents a :before or :after pseudo-element.
+ */
+public class PseudoElement extends Element {
+
+ public static final String AFTER = "after";
+ public static final String BEFORE = "before";
+
+ /**
+ * Class constructor.
+ *
+ * @param parent
+ * Parent element to this pseudo-element.
+ * @param name
+ * Name of this pseudo-element, e.g. PseudoElement.BEFORE.
+ */
+ public PseudoElement(Element parent, String name) {
+ super(name);
+ this.setParent(parent);
+ }
+
+ /**
+ * @see java.lang.Object#equals(java.lang.Object)
+ */
+ public boolean equals(Object o) {
+ if (o == null || o.getClass() != this.getClass()) {
+ return false;
+ }
+ PseudoElement other = (PseudoElement) o;
+ return this.getParent() == other.getParent()
+ && this.getQualifiedName().equals(other.getQualifiedName());
+ }
+
+ /**
+ * @see java.lang.Object#hashCode()
+ */
+ public int hashCode() {
+ return this.getParent().hashCode() + this.getQualifiedName().hashCode();
+ }
+}

Back to the top