testdata.Constants1 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.eclipse.xtext.xbase.testing Show documentation
Show all versions of org.eclipse.xtext.xbase.testing Show documentation
Infrastructure for testing Xbase languages.
The newest version!
package testdata;
/**
* @since 2.5
*/
public class Constants1 {
public final static String STRING_CONSTANT = "Some Constant";
public final static int INT_CONSTANT = 42;
public static int NOT_A_INT_CONSTANT = 42;
}