blob: 74905955917cf1a89d6bc1fd0dc240323a163c52 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.tika.sax;
public class Link {
private final String type;
private final String uri;
private final String title;
private final String text;
public Link(String type, String uri, String title, String text) {
this.type = type;
this.uri = uri;
this.title = title;
this.text = text;
}
public boolean isAnchor() {
return "a".equals(type);
}
public boolean isImage() {
return "img".equals(type);
}
public String getType() {
return type;
}
public String getUri() {
return uri;
}
public String getTitle() {
return title;
}
public String getText() {
return text;
}
public String toString() {
StringBuilder builder = new StringBuilder();
if (isImage()) {
builder.append("<img src=\"");
builder.append(uri);
if (title != null && title.length() > 0) {
builder.append("\" title=\"");
builder.append(title);
}
if (text != null && text.length() > 0) {
builder.append("\" alt=\"");
builder.append(text);
}
builder.append("\"/>");
} else {
builder.append("<");
builder.append(type);
builder.append(" href=\"");
builder.append(uri);
if (title != null && title.length() > 0) {
builder.append("\" title=\"");
builder.append(title);
}
builder.append("\">");
builder.append(text);
builder.append("</");
builder.append(type);
builder.append(">");
}
return builder.toString();
}
}