Videoautomat

videoautomat
Class MainClass

java.lang.Object
  |
  +--videoautomat.MainClass

public class MainClass
extends Object

This class implements the start up of the whole application, it contains also the main void of this app.


Field Summary
static data.NumberValue RENT_VALUE_DAY
          Represents the cost per day for renting a video.
 
Constructor Summary
MainClass()
           
 
Method Summary
static void initializeMoney()
          Method to initial add some coins to the VideoShops MoneyBag.
static void initializeUsers()
          Method to initial add some users to the global UserManager.
static void initializeVideos()
          Method to initial add some videos to the VideoShops Stock.
static void main(String[] arqs)
          The main void of the application, starts up the automat.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

RENT_VALUE_DAY

public static data.NumberValue RENT_VALUE_DAY
Represents the cost per day for renting a video.

Constructor Detail

MainClass

public MainClass()
Method Detail

main

public static void main(String[] arqs)
The main void of the application, starts up the automat.

Parameters:
arqs - takes no effect

initializeMoney

public static void initializeMoney()
Method to initial add some coins to the VideoShops MoneyBag.


initializeVideos

public static void initializeVideos()
Method to initial add some videos to the VideoShops Stock.


initializeUsers

public static void initializeUsers()
Method to initial add some users to the global UserManager.


Videoautomat