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

org.redline_rpm.ant.Provides Maven / Gradle / Ivy

Go to download

Redline is a pure Java library for manipulating RPM Package Manager packages.

There is a newer version: 1.2.10
Show newest version
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;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy