01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17: package org.apache.wml.dom;
18:
19: import org.apache.wml.*;
20:
21: /**
22: * @xerces.internal
23: * @version $Id: WMLHeadElementImpl.java 447257 2006-09-18 05:40:07Z mrglavas $
24: * @author <a href="mailto:david@topware.com.tw">David Li</a>
25: */
26: public class WMLHeadElementImpl extends WMLElementImpl implements
27: WMLHeadElement {
28:
29: private static final long serialVersionUID = 3311307374813188908L;
30:
31: public WMLHeadElementImpl(WMLDocumentImpl owner, String tagName) {
32: super (owner, tagName);
33: }
34:
35: public void setClassName(String newValue) {
36: setAttribute("class", newValue);
37: }
38:
39: public String getClassName() {
40: return getAttribute("class");
41: }
42:
43: public void setId(String newValue) {
44: setAttribute("id", newValue);
45: }
46:
47: public String getId() {
48: return getAttribute("id");
49: }
50:
51: }
|