org.xmlcml.args.StringPair-old Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of euclid Show documentation
Show all versions of euclid Show documentation
A Java library for 2D and 3D geometric calculations
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;
}
}