Back to project page mobile-android.
The source code is released under:
MIT License
If you think the Android project mobile-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.manyconf.conference; /*from ww w.java 2s . co m*/ /** * A class whose sole job is to define widely-used constants. See also: * http://www.javapractices.com/topic/TopicAction.do?Id=2 */ public final class Const { // Single-conf app? public static boolean singleConfApp = false; public static int singleConfAppID = 3; private Const() { //this prevents even the native class from //calling this ctor as well : throw new AssertionError(); } }