Back to project page SpeechWriter.
The source code is released under:
MIT License
If you think the Android project SpeechWriter 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 edu.psu.rcy5017.speechwriter.constant; /*from w ww. j av a 2s. c o m*/ /** * A class containing default values for intents. * @author Ryan Yosua * */ public final class DefaultValues { public static final int DEFAULT_INT_VALUE = -1; public static final long DEFAULT_LONG_VALUE = 0; private DefaultValues() { // Prevent the instantiation of this class. } }