Skip to content

Instantly share code, notes, and snippets.

@abhiramsingh
Created March 21, 2013 02:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abhiramsingh/5210346 to your computer and use it in GitHub Desktop.
Save abhiramsingh/5210346 to your computer and use it in GitHub Desktop.
Application Constants
package test.concurrency.traffic;
public class Consts {
public static final int TOTAL_RUN_SECONDS = 100;
public static final int PAVEMENT_LENGTH =100;
public static final int CAR_1_START_POS = 24;
public static final int CAR_2_START_POS = 12;
public static final int CAR_3_START_POS = 0;
public static final int ONE_SEC =1000;
public static final int SWITCH_INTERVAL = 10;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment