blob: 08195adbedffd96238954a79a4ab2e5aec21f25e [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;
public class FieldViolation extends ViolationContainer
{
private String type;
public String getType()
{
return type;
}
public void setType(String type)
{
this.type = type;
}
protected String getViolationName()
{
return "field";
}
public String toString()
{
StringBuffer sb = new StringBuffer();
sb.append("<");
sb.append(getViolationName());
sb.append(toAttribute("name", getName()));
sb.append(toAttribute("type", getType()));
sb.append("/>");
return sb.toString();
}
}