org.redline_rpm.ant.BuiltIn Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redline Show documentation
Show all versions of redline Show documentation
Redline is a pure Java library for manipulating RPM Package Manager packages.
package org.redline_rpm.ant;
public class BuiltIn {
private String directory;
public void setDirectory( String text) {
this.directory = text;
}
public String getDirectory() {
return directory;
}
}