org.jace.metaclass.JaceConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jace-core-java Show documentation
Show all versions of jace-core-java Show documentation
Jace core module, Java source-code
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