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

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

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

/**
 * Specifies libraries used by class peers. Meant to be used as a child of
 * the <EnhancePeer> tag.
 *
 * @author Gili Tzbari
 */
public class Library
{
	private String name;

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy