blob: 6b9aa2003434b37c58bf6ec3c6b18f6166cb75ea [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2004 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.wst.wsdl.validation.internal.ui.ant;
/**
* An extension Ant WSDL validator.
*/
public class ExtensionValidator
{
private String classname = null;
private String namespace = null;
private String resourcebundle = null;
public void setClass(String classname)
{
this.classname = classname;
}
public String getClassName()
{
return this.classname;
}
public void setNamespace(String namespace)
{
this.namespace = namespace;
}
public String getNamespace()
{
return this.namespace;
}
public void setResourceBundle(String resourcebundle)
{
this.resourcebundle = resourcebundle;
}
public String getResourceBundle()
{
return this.resourcebundle;
}
}