org.jace.ant.Dependency Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jace-core-java Show documentation
Show all versions of jace-core-java Show documentation
Jace core module, Java source-code
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