blob: 4e5f225acbf1181775ca4642be44c9e9c1afd5ef [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wtp.releng.tools.component.api.progress;
import org.eclipse.wtp.releng.tools.component.internal.ComponentEntry;
public class APIProgressEntry extends ComponentEntry
{
private String overviewDoc;
public String getOverviewDoc()
{
return overviewDoc;
}
public void setOverviewDoc(String overviewDoc)
{
this.overviewDoc = overviewDoc;
}
public String toString()
{
StringBuffer sb = new StringBuffer();
sb.append("<component ");
sb.append(toAttribute("name", getCompName()));
sb.append(toAttribute("ref", getRef()));
if (overviewDoc != null)
sb.append(toAttribute("overviewDoc", overviewDoc));
sb.append("/>");
return sb.toString();
}
}