473,566 Members | 3,342 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Class Design Tools?

I'd like to know about application(s) or the name by which the following
process is referred which would allow a business analyst to enter the
following statements which when submitted would result in the generation of
class library members...

"Are you an individual person not working?"
if no, ask "have you ever worked for an employer?"
if no, ask "Are you thirteen years of age or younger?"
...

--
<%= Clinton Gallagher
METROmilwaukee "Regional Information Services"
NET csgallagher AT metromilwaukee. com
URL http://clintongallagher.metromilwaukee.com/

Jul 21 '05 #1
4 2369
I'm confused about what this tool would do. What would you expect the class
to look like? Would this happen at design time or run time? What
object-relational mapping should take place for persistence? How would the
resulting system behave?

I'm not sure if you are asking for an expert system, a questionnaire system,
or something else entirely.
--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"clintonG" <cs*********@RE MOVETHISTEXTmet romilwaukee.com > wrote in message
news:%2******** ********@TK2MSF TNGP10.phx.gbl. ..
I'd like to know about application(s) or the name by which the following
process is referred which would allow a business analyst to enter the
following statements which when submitted would result in the generation of class library members...

"Are you an individual person not working?"
if no, ask "have you ever worked for an employer?"
if no, ask "Are you thirteen years of age or younger?"
...

--
<%= Clinton Gallagher
METROmilwaukee "Regional Information Services"
NET csgallagher AT metromilwaukee. com
URL http://clintongallagher.metromilwaukee.com/

Jul 21 '05 #2
I'm not sure either which is why I'm asking Nick, thanks for responding.
The explicit reference to 'class library members' was somewhat understated
and perhaps a misnomer.

Let me put it this way. I eventually realized that it was no longer
efficient for me to write HTML manually so I adopted the use of tools such
as Dreamweaver and FrontPage that provided me with a graphic user interface
that not only results in the generation of the source 'code' but they also
support operations such as drag and drop, process controller 'wizards' that
support the logical creation of the layout itself after a few uses of which
we submit, run and then sit back to ponder the results. I still write a lot
of HTML and related client-side script manually regardless but I now always
start with an initial 'design' using the push-button interface that
generates much of the factory work. I can sit back and review my naming
conventions, the logic of my intentions and have a tool generate something
useful that I can then continue to modify or reuse as required.

I'm at the point where I want to know what options exist to do the same for
myself and others when 'designing' database schemas, xml schemas, classes
and so on.

Clear as mud? :-)

--
<%= Clinton Gallagher
"Nick Malik [Microsoft]" <ni*******@hotm ail.nospam.com> wrote in message
news:xrWAd.3060 29$HA.7962@attb i_s01...
I'm confused about what this tool would do. What would you expect the class to look like? Would this happen at design time or run time? What
object-relational mapping should take place for persistence? How would the resulting system behave?

I'm not sure if you are asking for an expert system, a questionnaire system, or something else entirely.
--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"clintonG" <cs*********@RE MOVETHISTEXTmet romilwaukee.com > wrote in message
news:%2******** ********@TK2MSF TNGP10.phx.gbl. ..
I'd like to know about application(s) or the name by which the following
process is referred which would allow a business analyst to enter the
following statements which when submitted would result in the generation

of
class library members...

"Are you an individual person not working?"
if no, ask "have you ever worked for an employer?"
if no, ask "Are you thirteen years of age or younger?"
...

--
<%= Clinton Gallagher
METROmilwaukee "Regional Information Services"
NET csgallagher AT metromilwaukee. com
URL http://clintongallagher.metromilwaukee.com/


Jul 21 '05 #3
It's clear, but you may or may not like the answer.

Much of what you are talking about in the application development space is
approached from two different directions: RAD GUI development, and Model
Driven Architecture.

The approach you experienced with the HTML tools falls into RAD GUI
Development. You get a hefty helping of this with Visual Studio to help you
put together your apps from a U/I standpoint. This mostly hasn't changed
since the earliest days of Visual Basic, with the exception that we can bind
databases to a lot more controls now.

A more typical approach for app development using tools would be Model
Driven Architecture. In this paradigm, you draw diagrams of your code
structure using UML (or something close) and the, at the click of a button,
large amounts of code are emitted. You can create the framework and
inheritance tree for enterprise applications in under a week (I've done it).
You need a couple of skills to succeed in this: a good understanding of the
structure of applications development from a patterns perspective, and a
light understanding of UML class diagrams.

To get the skills:
http://blogs.msdn.com/nickmalik/arch...21/328727.aspx

The tools are interesting. The granddaddy of these is Rational Rose, but
personally I never found the Rational tools to be useful. My favorite, at
present, is a tool called Sparx Enterprise Architect (EA). You start with
an Excellent UML diagramming tool, and you can emit code in C#, C++, Java,
VB.NET, and Smalltalk. The tool is fun to use, and has a swiss-army-knife
feel to it... just about everything is in there, although some features are
kinda silly. Everything works and works well. The code that is emitted can
be readily "round tripped" which means that you go modify the code, add
piles of implementation details, etc, and then run the tool to update the
diagrams from code. You can add something to the diagrams at that point,
and put the code back out, without losing any of your work. You just can't
beat it.

That said, the new version of Visual Studio (currently in Beta) is promising
to come out with a similar capability. It won't have support for as much of
the UML, and it won't have all the bells and whistles that no one uses, but
it will have the ability to create diagrams, emit code, and round-trip, just
like Sparx EA. On the blogs, the designer of this tool said that the
diagrams won't be UML 2.0 compliant, which is probably a death-knell for its
use in large enterprises. We will have to wait to see what happens. I've
used the Beta version to create a diagram and emit code that I then dragged
across to my existing environment to write code in. It pretty cool and
should give EA a run for it's money.

You can also add in tools like AOP and O/R Frameworks like NHibernate, which
will make your code considerably smaller. This approaches the problem from
the coder standpoint, but there is minimal support for these things directly
in development environments like Visual Studio (that may change).

I hope this helps,

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"clintonG" <cs*********@RE MOVETHISTEXTmet romilwaukee.com > wrote in message
news:uP******** ******@TK2MSFTN GP11.phx.gbl...
I'm not sure either which is why I'm asking Nick, thanks for responding.
The explicit reference to 'class library members' was somewhat understated
and perhaps a misnomer.

Let me put it this way. I eventually realized that it was no longer
efficient for me to write HTML manually so I adopted the use of tools such
as Dreamweaver and FrontPage that provided me with a graphic user interface that not only results in the generation of the source 'code' but they also
support operations such as drag and drop, process controller 'wizards' that support the logical creation of the layout itself after a few uses of which we submit, run and then sit back to ponder the results. I still write a lot of HTML and related client-side script manually regardless but I now always start with an initial 'design' using the push-button interface that
generates much of the factory work. I can sit back and review my naming
conventions, the logic of my intentions and have a tool generate something
useful that I can then continue to modify or reuse as required.

I'm at the point where I want to know what options exist to do the same for myself and others when 'designing' database schemas, xml schemas, classes
and so on.

Clear as mud? :-)

--
<%= Clinton Gallagher
"Nick Malik [Microsoft]" <ni*******@hotm ail.nospam.com> wrote in message
news:xrWAd.3060 29$HA.7962@attb i_s01...
I'm confused about what this tool would do. What would you expect the

class
to look like? Would this happen at design time or run time? What
object-relational mapping should take place for persistence? How would

the
resulting system behave?

I'm not sure if you are asking for an expert system, a questionnaire

system,
or something else entirely.
--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"clintonG" <cs*********@RE MOVETHISTEXTmet romilwaukee.com > wrote in message news:%2******** ********@TK2MSF TNGP10.phx.gbl. ..
I'd like to know about application(s) or the name by which the following process is referred which would allow a business analyst to enter the
following statements which when submitted would result in the
generation of
class library members...

"Are you an individual person not working?"
if no, ask "have you ever worked for an employer?"
if no, ask "Are you thirteen years of age or younger?"
...

--
<%= Clinton Gallagher
METROmilwaukee "Regional Information Services"
NET csgallagher AT metromilwaukee. com
URL http://clintongallagher.metromilwaukee.com/



Jul 21 '05 #4
Thank you Nick, your comments are well understood and appreciated. I don't
mind learning, I thrive on it in fact, but I am getting to the point that
I'd really like to make it as easy as possible to actually use what I learn.
At least for one release before moving on to the next ;-) I'll be reading
the blog and downloading Sparx to see what its going to take for me to make
this transition.

<%= Clinton Gallagher

"Nick Malik [Microsoft]" <ni*******@hotm ail.nospam.com> wrote in message
news:t7ZAd.7279 48$mD.417331@at tbi_s02...
It's clear, but you may or may not like the answer.

Much of what you are talking about in the application development space is
approached from two different directions: RAD GUI development, and Model
Driven Architecture.

The approach you experienced with the HTML tools falls into RAD GUI
Development. You get a hefty helping of this with Visual Studio to help you put together your apps from a U/I standpoint. This mostly hasn't changed
since the earliest days of Visual Basic, with the exception that we can bind databases to a lot more controls now.

A more typical approach for app development using tools would be Model
Driven Architecture. In this paradigm, you draw diagrams of your code
structure using UML (or something close) and the, at the click of a button, large amounts of code are emitted. You can create the framework and
inheritance tree for enterprise applications in under a week (I've done it). You need a couple of skills to succeed in this: a good understanding of the structure of applications development from a patterns perspective, and a
light understanding of UML class diagrams.

To get the skills:
http://blogs.msdn.com/nickmalik/arch...21/328727.aspx

The tools are interesting. The granddaddy of these is Rational Rose, but
personally I never found the Rational tools to be useful. My favorite, at
present, is a tool called Sparx Enterprise Architect (EA). You start with
an Excellent UML diagramming tool, and you can emit code in C#, C++, Java,
VB.NET, and Smalltalk. The tool is fun to use, and has a swiss-army-knife
feel to it... just about everything is in there, although some features are kinda silly. Everything works and works well. The code that is emitted can be readily "round tripped" which means that you go modify the code, add
piles of implementation details, etc, and then run the tool to update the
diagrams from code. You can add something to the diagrams at that point,
and put the code back out, without losing any of your work. You just can't beat it.

That said, the new version of Visual Studio (currently in Beta) is promising to come out with a similar capability. It won't have support for as much of the UML, and it won't have all the bells and whistles that no one uses, but it will have the ability to create diagrams, emit code, and round-trip, just like Sparx EA. On the blogs, the designer of this tool said that the
diagrams won't be UML 2.0 compliant, which is probably a death-knell for its use in large enterprises. We will have to wait to see what happens. I've
used the Beta version to create a diagram and emit code that I then dragged across to my existing environment to write code in. It pretty cool and
should give EA a run for it's money.

You can also add in tools like AOP and O/R Frameworks like NHibernate, which will make your code considerably smaller. This approaches the problem from the coder standpoint, but there is minimal support for these things directly in development environments like Visual Studio (that may change).

I hope this helps,

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"clintonG" <cs*********@RE MOVETHISTEXTmet romilwaukee.com > wrote in message
news:uP******** ******@TK2MSFTN GP11.phx.gbl...
I'm not sure either which is why I'm asking Nick, thanks for responding.
The explicit reference to 'class library members' was somewhat understated
and perhaps a misnomer.

Let me put it this way. I eventually realized that it was no longer
efficient for me to write HTML manually so I adopted the use of tools such as Dreamweaver and FrontPage that provided me with a graphic user

interface
that not only results in the generation of the source 'code' but they also support operations such as drag and drop, process controller 'wizards'

that
support the logical creation of the layout itself after a few uses of

which
we submit, run and then sit back to ponder the results. I still write a

lot
of HTML and related client-side script manually regardless but I now

always
start with an initial 'design' using the push-button interface that
generates much of the factory work. I can sit back and review my naming
conventions, the logic of my intentions and have a tool generate something useful that I can then continue to modify or reuse as required.

I'm at the point where I want to know what options exist to do the same

for
myself and others when 'designing' database schemas, xml schemas, classes and so on.

Clear as mud? :-)

--
<%= Clinton Gallagher
"Nick Malik [Microsoft]" <ni*******@hotm ail.nospam.com> wrote in message
news:xrWAd.3060 29$HA.7962@attb i_s01...
I'm confused about what this tool would do. What would you expect the

class
to look like? Would this happen at design time or run time? What
object-relational mapping should take place for persistence? How would
the
resulting system behave?

I'm not sure if you are asking for an expert system, a questionnaire

system,
or something else entirely.
--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"clintonG" <cs*********@RE MOVETHISTEXTmet romilwaukee.com > wrote in

message news:%2******** ********@TK2MSF TNGP10.phx.gbl. ..
> I'd like to know about application(s) or the name by which the following > process is referred which would allow a business analyst to enter
the > following statements which when submitted would result in the

generation of
> class library members...
>
> "Are you an individual person not working?"
> if no, ask "have you ever worked for an employer?"
> if no, ask "Are you thirteen years of age or younger?"
> ...
>
> --
> <%= Clinton Gallagher
> METROmilwaukee "Regional Information Services"
> NET csgallagher AT metromilwaukee. com
> URL http://clintongallagher.metromilwaukee.com/
>
>
>



Jul 21 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

43
4802
by: grz02 | last post by:
Hi, Im an experienced database+software designer and developer, but, unfortunately, anything to do with web-programming and web-systems designs is still a pretty new area to me... (been working mostly with "legacy" environments the last 10 years) So I am writing this, hoping to get some useful advise and feedback... I have done some...
0
1608
by: grz02 | last post by:
Im an experienced database+software designer and developer, but, unfortunately, anything to do with web-programming and web-systems designs is still a pretty new area to me... (been working mostly with "legacy" environments the last 10 years) So I am writing this, hoping to get some useful advise and feedback... I have done some pretty...
7
263
by: Juarez | last post by:
Is it possible to divide a class in many .cs files ? For example one source file for each method ? Thanks.
2
4713
by: Matt | last post by:
Hello, I would like to generate what I call an "overall class hierarchy" in UML automatically derived from my C++ code source. An example of what I seek: http://biz2tek.com/tmp/overall-class-hierarchy-sde (This link may be temporary; email me if you can't get access to it, I
5
8705
by: verec | last post by:
I just do not understand this error. Am I misusing dynamic_cast ? What I want to do is to have a single template construct (with no optional argument) so that it works for whatever T I want to use it with. Now, if that T happens to be some subclass of a known base class (object, in this case), I want to perform some extra stuff ... I've...
4
340
by: clintonG | last post by:
I'd like to know about application(s) or the name by which the following process is referred which would allow a business analyst to enter the following statements which when submitted would result in the generation of class library members... "Are you an individual person not working?" if no, ask "have you ever worked for an employer?" if...
0
2494
by: YellowFin Announcements | last post by:
Introduction Usability and relevance have been identified as the major factors preventing mass adoption of Business Intelligence applications. What we have today are traditional BI tools that don't work nearly as well as they should, even for analysts and power users. The reason they haven't reached the masses is because most of the tools...
1
1279
by: | last post by:
Hi. This is a a semi-newbie question about how to store arbitrary information about my apps such that I can code quickly, mimizing complexity and the number of things I have to hold in my brain. I am going to describe the scheme I'm using, and then I'm going to describe another scheme that may be more OO but that I have not tried. I'm...
37
2575
by: Phlip | last post by:
1230987za wrote: Kanze is a classically-trained "unit tester". In some circles "unit" is a QA concept - specifically, if a test fails, you only need to inspect one unit. So "units" are "things which are clearly delimited and accessible to inspection". That should map onto C++ classes - specifically due to overlapping requirements. C++...
0
7584
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7893
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
8109
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
0
6263
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
0
5213
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3643
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3626
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1202
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
926
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.