org.testatoo.cartridge.html4.element.Dd Maven / Gradle / Ivy
/**
* Copyright (C) 2008 Ovea
*
* 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.testatoo.cartridge.html4.element;
import org.testatoo.cartridge.html4.HtmlEvaluator;
import org.testatoo.core.ComponentException;
import org.testatoo.core.component.Component;
import static org.testatoo.cartridge.html4.element.HtmlElementType.Dd;
/**
* This class allows the testing of the "dd" element properties for html4.
* Dd is a Definition description, used in conjunction with dl to define a definition list and dt, to define the term linked with the description.
*
* @author [email protected]
* @see "dd" specification
*/
public final class Dd extends Component implements Coreattrs, I18n {
private CoreAttributeSupport coreAttributeSupport;
private I18nAttributeSupport i18nAttributeSupport;
private HtmlEvaluator evaluator;
/**
* Class constructor specifying the evaluator to use and the id of the "dd" element we want to test.
*
* @param evaluator a UI Test engine specific html evaluator
* @param id the id (unique) of the "dd" element
* @throws ComponentException if the given id does not correspond to a "dd" element
*/
public Dd(HtmlEvaluator evaluator, String id) {
super(evaluator, id);
this.evaluator = evaluator;
coreAttributeSupport = new CoreAttributeSupport(evaluator);
i18nAttributeSupport = new I18nAttributeSupport(evaluator);
if (evaluator.htmlElementType(id) != Dd) {
throw new ComponentException("The component with id=" + id + " is not a " + Dd + " but a " + evaluator.htmlElementType(id));
}
}
/**
* @see CoreAttributeSupport
*/
public String classname() {
return coreAttributeSupport.classname(this);
}
/**
* @see CoreAttributeSupport
*/
public String style() {
return coreAttributeSupport.style(this);
}
/**
* @see CoreAttributeSupport
*/
public String title() {
return coreAttributeSupport.title(this);
}
/**
* @see I18nAttributeSupport
*/
public String language() {
return i18nAttributeSupport.language(this);
}
/**
* @see I18nAttributeSupport
*/
public Direction direction() {
return i18nAttributeSupport.direction(this);
}
/**
* To get the content of the "dtd" element.
*
* @return the content of the dd
*/
public String content() {
return evaluator.content(this);
}
/**
* To get the string describing the "dd" element.
*
* @return string describing the "dd" element
*/
public String toString() {
return super.toString() + ", title:" + title() + ", content:" + content();
}
}