blob: 5c95aa76a642ddc36a7c92a667d9c4c6bb52c0ae [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.violation;
import org.eclipse.wtp.releng.tools.component.internal.ComponentObject;
public abstract class Violation extends ComponentObject
{
private String name;
public String getName()
{
return name;
}
public void setName(String name)
{
this.name = name;
}
protected abstract String getViolationName();
public String toString()
{
StringBuffer sb = new StringBuffer();
sb.append("<");
sb.append(getViolationName());
sb.append(toAttribute("name", getName()));
sb.append("/>");
return sb.toString();
}
}