/* * Copyright 2007 Guy Van den Broeck * * 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.outerj.daisy.diff.html.ancestor.tagtostring; import java.util.ResourceBundle; import org.outerj.daisy.diff.html.ancestor.ChangeText; import org.outerj.daisy.diff.html.ancestor.TagChangeSematic; import org.outerj.daisy.diff.html.dom.TagNode; public class NoContentTagToString extends TagToString { protected NoContentTagToString(TagNode node, TagChangeSematic sem, ResourceBundle bundle) { super(node, sem, bundle); } @Override public void getAddedDescription(ChangeText txt) { txt.addText(getChangedTo() + " " + getArticle().toLowerCase() + " "); txt.addHtml("<b>"); txt.addText(getDescription().toLowerCase()); txt.addHtml("</b>"); addAttributes(txt, node.getAttributes()); txt.addText("."); } private String getChangedTo() { return getString("diff-changedto"); } @Override public void getRemovedDescription(ChangeText txt) { txt.addText(getChangedFrom() + " " + getArticle().toLowerCase() + " "); txt.addHtml("<b>"); txt.addText(getDescription().toLowerCase()); txt.addHtml("</b>"); addAttributes(txt, node.getAttributes()); txt.addText("."); } private String getChangedFrom() { return getString("diff-changedfrom"); } }