package com.newprojectname.views.mainScreen { import mx.containers.Canvas; /** * The MainScreenBase class would contain the base functionality * for the main screen of the application. Other screens would have * their own classes to drive their functionality. */ public class MainScreenBase extends Canvas { /** * Class constructor. * * @return */ public function MainScreenBase() { super(); } } }