blob: 68dbf5354ebda9dd0edf38a46446ce9e8be42e5b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 1998, 2008 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:
* Goh KONDOH - initial API and implementation
*******************************************************************************/
package org.eclipse.actf.model.dom.html.impl;
import org.eclipse.actf.model.dom.sgml.SGMLElement;
import org.w3c.dom.Document;
import org.w3c.dom.html.HTMLElement;
public class SHElement extends SGMLElement implements HTMLElement {
protected SHElement(String name, Document doc) {
super(name, doc);
}
public String getClassName() {
return getAttribute("class");
}
public String getDir() {
return getAttribute("dir");
}
public String getId() {
return getAttribute("id");
}
public String getLang() {
return getAttribute("lang");
}
public String getTitle() {
return getAttribute("title");
}
public void setClassName(String className) {
setAttribute("class", className);
}
public void setDir(String dir) {
setAttribute("dir", dir);
}
public void setId(String id) {
setAttribute("id", id);
}
public void setLang(String lang) {
setAttribute("lang", lang);
}
public void setTitle(String title) {
setAttribute("title", title);
}
}