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

org.xmlcml.args.StringPair-old Maven / Gradle / Ivy

There is a newer version: 2.9
Show newest version
package org.xmlcml.args;

/** a pair of strings.
 * 
 * @author pm286
 *
 */
@Deprecated

public class StringPair {

	public String left;
	public String right;
	
	public StringPair(String left, String right) {
		this.left = left;
		this.right = right;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy