Files
Brainstorm/Encryption Utility Application/src/com/eua/controller/AbstractController.java
2014-05-30 10:31:51 -07:00

23 lines
684 B
Java

package com.eua.controller;
import com.foundation.application.*;
import com.eua.application.*;
/**
*
*/
public abstract class AbstractController extends com.foundation.controller.Controller {
/**
* AbstractController constructor.
*/
public AbstractController() {
super();
}//AbstractController()//
/**
* Gets the application object that this object is running under. The application object provides the object various services that it will need.
* @return The application reference for the application this object is running under.
*/
public IApplication getApplication() {
return EncryptionUtilityApplication.getSingleton();
}//getApplication()//
}//AbstractController//