Back to project page dv-quiz.
The source code is released under:
Apache License
If you think the Android project dv-quiz 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.dvorakdev.dvquiz.reference; // w w w . j a va 2 s .c o m public enum dvQuizReference { ADD_NEW_CATEGORY (2), ADD_NEW_QUIZ (3), SELECT_QUIZ_FILE (5); private int referenceValue; public int getReferenceValue() { return referenceValue; } private void setReferenceValue(int referenceValue) { this.referenceValue = referenceValue; } dvQuizReference(int i) { this.setReferenceValue(i); } }