blob: d4e50b0d187c0db2e7d4440b4095915ff002c60f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2017 xored software, Inc. and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* xored software, Inc. - initial API and Implementation (Alex Panchenko)
*******************************************************************************/
package org.eclipse.dltk.ui.documentation;
import java.io.IOException;
import java.io.Reader;
import java.net.URL;
import org.eclipse.jface.resource.ImageDescriptor;
/**
* @since 2.0
*/
public abstract class AbstractDocumentationResponse implements
IDocumentationResponse {
private final Object object;
public AbstractDocumentationResponse(Object object) {
this.object = object;
}
/**
* @since 3.0
*/
@Override
public String getTitle() {
return null;
}
@Override
public ImageDescriptor getImage() {
return null;
}
@Override
public Object getObject() {
return object;
}
@Override
public URL getURL() throws IOException {
return null;
}
@Override
public String getText() throws IOException {
final Reader reader = getReader();
try {
return DocumentationUtils.readAll(reader);
} finally {
try {
reader.close();
} catch (IOException e) {
// ignore close exception
}
}
}
}