Modifier and Type | Class and Description |
---|---|
class |
MedicalHistoryController
Represents the Controller for the Bottom Level Agent MedicalHistory
This agent is for editing/adding Medical History Entries
|
Modifier and Type | Class and Description |
---|---|
class |
PatientController
Represents the Controller for the Bottom Level Agent Patient
This agent is for editing/adding Patients
|
Modifier and Type | Class and Description |
---|---|
class |
PdfExportController
Represents the Controller for the Bottom Level Agent PDFExport
This agent is for exporting/Merging the model into the Template and saving it into a pdf file
|
Modifier and Type | Class and Description |
---|---|
class |
UserController
Represents the Controller for the Bottom Level Agent user
This agent is for editing/adding User Entries
|
Modifier and Type | Class and Description |
---|---|
class |
WordExportController
Represents the Controller for the Bottom Level Agent WordExport
This agent is for exporting/Merging the model into the Template and saving it into a docx file
|
Modifier and Type | Class and Description |
---|---|
class |
AdminController
Represents the Controller for the Intermediate Level Agent Admin
This agent is the Main Dialog for the User of the type Admin
It handles all basic action which should be performed
|
Modifier and Type | Class and Description |
---|---|
class |
DatabaseController
Represents the Controller for the Intermediate Level Agent Database
It handles all Insert, Update, Select and Delete commands used in this application
It passes the commands to the right handler
|
Modifier and Type | Class and Description |
---|---|
class |
DoctorController
Represents the Controller for the Intermediate Level Agent Doctor
This agent is the Main Dialog for the User of the type Doctor
It handles all basic action which should be performed when an Doctor user loggs on
|
Modifier and Type | Class and Description |
---|---|
class |
ExportController
Represents the Controller for the Intermediate Level Agent Admin
This Agent handles all Exporting tasks, and validate the commands sended by the user
|
Modifier and Type | Class and Description |
---|---|
class |
KvController
Represents the Controller for the Intermediate Level Agent KV
This agent is the Main Dialog for the User of the type KV
It handles all basic action which should be performed
|
Modifier and Type | Class and Description |
---|---|
class |
AppController
Top-Level-Agent controller. handles all agents and is on top of hierarchy
level
|
Modifier and Type | Class and Description |
---|---|
class |
AgentController
abstract class for pac pattern - controller
|
Modifier and Type | Method and Description |
---|---|
<T extends IAgentController> |
AgentFactory.requestAgent(java.lang.Class<T> agentClass)
return agent, if exist, else create a new agent.
|
Modifier and Type | Method and Description |
---|---|
IAgentController |
IAgentController.getParent()
get parent control
|
IAgentController |
AgentController.getParent() |
IAgentController |
AgentCommand.getSender()
Give the sender of this command wrapper.
|
Modifier and Type | Method and Description |
---|---|
void |
AgentController.addChild(IAgentController child)
add a child agent control
|
void |
IAgentController.receiveMessage(AgentCommand message,
IAgentController sender)
receive message from other agents
a) Message from parent:
1.
|
void |
AgentController.receiveMessage(AgentCommand message,
IAgentController sender) |
void |
AgentFactory.releaseAgent(IAgentController agent)
remove a agent
|
void |
AgentController.removeCildren(IAgentController child)
remove a child agent control
|
void |
IAgentController.setParent(IAgentController parent)
set parent control
|
void |
AgentController.setParent(IAgentController parent) |
void |
AgentCommand.setSender(IAgentController sender)
Set the sender of this command wrapper.
|
Modifier and Type | Class and Description |
---|---|
class |
FakeController |