Hi
I am trying to make a small issue tracker to for learning JSP/
Servelets. I am trying to follow MVC architecture for the same and I
am stuck in a design issue with model classes.
Here is the scene....
There is a entity "IssueAtribute", which represents elements in a
Issue. (Basically entity "Issue" contains a Ordered List of
"IssueAttributes").
Now "IssueAttribute" can be of various types eg. TextIssueAttribute,
LongTextIssueAttribute, DateIssueAttribute, etc. The "View" in the MVC
will probably use this information to render the issue attribute. eg.
A JSP might create a Calendar widget for DateIssueType and TextArea
for LongTextIssueType etc.
So the design decision that i am struck with is how design class
hierarchy for "IssueAttribute" and its types. I considered using
inheritance for all its types as that way I can keep all
"IssueAttributes" in "Issue" as a single ArrayList but that will loose
its type information unless is do a check at runtime (using
instanceOf) which i think is in elegant.
So any idea/criticism is most welcome.
Thanks
Andrew Thompson - 11 Apr 2007 18:26 GMT
Sub: A design problem
If multi-posting messages to usenet newsgroups
is part of the design, it is fatally flawed.
Please cross-post, in future.
<http://www.physci.org/codes/javafaq.html#xpost>
(X-post to c.l.j.p./h., w/ f-u to c.l.j.p. only)
Andrew T.
Oliver Wong - 12 Apr 2007 18:59 GMT
> Now "IssueAttribute" can be of various types eg. TextIssueAttribute,
> LongTextIssueAttribute, DateIssueAttribute, etc. The "View" in the MVC
[quoted text clipped - 8 lines]
> its type information unless is do a check at runtime (using
> instanceOf) which i think is in elegant.
What situation are you thinking of where you need to know the type
information and thus use the instanceof operator?
- Oliver