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

org.bitbucket.gkutiel.at.At Maven / Gradle / Ivy

There is a newer version: 3-RELEASE
Show newest version
package org.bitbucket.gkutiel.at;

class At {
	static At at(final String type, final String args) {
		return new At(type, args);
	}

	final String type;
	final String args;

	At(final String type, final String args) {
		this.type = type;
		this.args = args;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy