org.redline_rpm.ant.Provides 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;
/**
* Object describing a provided capability (virtual package).
*/
public class Provides {
protected String name;
protected String version = "";
protected int comparison = 0;
public void setName( String name) {
this.name = name;
}
public String getName() {
return name;
}
public void setVersion( String version) {
this.version = version;
}
public String getVersion() {
return version;
}
}