Hi all
I know that each use case has at least one control class
that handles computations, algorithms, and validation
operations but how could we implement it
programmatically??
for example let’s take the login use case as case study,
there will be boundary class with the following attributes:
-userNameTextbox
-passWordTextbox
-loginButton
and there will be an entity class with the following
attributes:
-username
-password and some of get and set functions…
but what about the control class what does it handle??
does it has attributes ?? and what is the nature of methods
inside it??
I will appreciate anyone who can put an example that
illustrates how to implement the control classes in java or
c++ or vb.net
Regards