blob: f673837b3a9f22dc8316dd1e75d307e3411b17b3 [file] [log] [blame]
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.sling.commons.html.impl.tag;
import java.util.HashMap;
import java.util.Map;
import org.apache.sling.commons.html.AttrValue;
import org.apache.sling.commons.html.HtmlElement;
import org.apache.sling.commons.html.HtmlElementType;
public class DocType implements HtmlElement {
private String value;
private Map<String,AttrValue> attributes;
public DocType(String tag, Map<String,AttrValue> attrList) {
this.value = tag;
this.attributes = attrList;
}
public DocType(String text) {
this.value = "DOCTYPE";
this.attributes = new HashMap<>();
this.attributes.put(text, new AttrValue());
}
@Override
public HtmlElementType getType() {
return HtmlElementType.DOCTYPE;
}
@Override
public boolean supportsAttributes() {
return true;
}
@Override
public Map<String, AttrValue> getAttributes() {
return attributes;
}
@Override
public String getValue() {
return value;
}
}