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

org.jace.metaclass.JaceConstants Maven / Gradle / Ivy

There is a newer version: 1.2.22
Show newest version
package org.jace.metaclass;

/**
 * Jace constants.
 *
 * @author Gili Tzabari
 */
public class JaceConstants
{
	/**
	 * Prevent construction.
	 */
	private JaceConstants()
	{
	}

	/**
	 * The package used to prefix all Jace peers.
	 *
	 * @return the package used to prefix all Jace peers
	 */
	public static TypeName getPeerPackage()
	{
		return TypeNameFactory.fromPath("jace/peer");
	}

	/**
	 * The package used to prefix all Jace proxies.
	 *
	 * @return the package used to prefix all Jace proxies
	 */
	public static TypeName getProxyPackage()
	{
		return TypeNameFactory.fromPath("jace/proxy");
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy