All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jace.ant.Dependency Maven / Gradle / Ivy

There is a newer version: 1.2.22
Show newest version
package org.jace.ant;

/**
 * Specifies a class that requires a C++ proxy. Meant to be used as a child of the <GenerateProxies> tag.
 *
 * @author Gili Tzbari
 */
public class Dependency
{
	private String name;

	/**
	 * Sets the class name.
	 *
	 * @param name the class name
	 */
	public void setName(String name)
	{
		this.name = name;
	}

	/**
	 * Returns the class name.
	 *
	 * @return the class name
	 */
	public String getName()
	{
		return name;
	}

	@Override
	public String toString()
	{
		return "Dependency[name=" + getName() + "]";
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy