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

org.redline_rpm.IntString 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;

/**
 * Simple class to pair an int and a String with each other.
 */
public class IntString {

    private int theInt = 0;
    private String theString = "";

    public IntString (int theInt, String theString) {
        this.theInt = theInt;
        this.theString = theString;
    }

    public void setInt (int theInt) {
        this.theInt = theInt;
    }

    public int getInt () {
        return this.theInt;
    }

    public void setString (String theString) {
        this.theString = theString;
    }

    public String getString () {
        return this.theString;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy