blob: fd0490d672e2953914a19365b9803bf643d02765 [file] [log] [blame]
/*
* Copyright (c) 2011, 2012 Eike Stepper (Berlin, Germany) 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:
* Eike Stepper - initial API and implementation
*/
package org.eclipse.emf.cdo.releng.doc.article.impl;
import org.eclipse.emf.cdo.releng.doc.article.ArticlePackage;
import org.eclipse.emf.cdo.releng.doc.article.PluginResource;
import org.eclipse.emf.cdo.releng.doc.article.StructuralElement;
import org.eclipse.emf.cdo.releng.doc.article.impl.DocumentationImpl.TocWriter;
import org.eclipse.emf.cdo.releng.doc.article.util.ArticleUtil;
import org.eclipse.emf.ecore.EClass;
import com.sun.javadoc.ClassDoc;
import java.io.File;
import java.io.IOException;
/**
* <!-- begin-user-doc --> An implementation of the model object '<em><b>Plugin Resource</b></em>'. <!-- end-user-doc
* -->
* <p>
* </p>
*
* @generated
*/
public class PluginResourceImpl extends ExternalArticleImpl implements PluginResource
{
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
protected PluginResourceImpl()
{
super();
}
public PluginResourceImpl(StructuralElement parent, ClassDoc classDoc, String url)
{
super(parent, classDoc, url);
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
@Override
protected EClass eStaticClass()
{
return ArticlePackage.Literals.PLUGIN_RESOURCE;
}
@Override
public String linkFrom(StructuralElement source)
{
File sourceFile = source.getOutputFile();
File targetFile = new File(getDocumentation().getProjectFolder(), getUrl());
return ArticleUtil.createLink(sourceFile, targetFile);
}
@Override
protected void generateTocEntry(TocWriter writer) throws IOException
{
writer.writeSingle(getTitle(), url, null);
}
} // PluginResourceImpl