Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

89
votes
11answers
9k views

Is there a software-engineering methodology for functional programming?

Software Engineering as it is taught today is entirely focused on object-oriented programming and the 'natural' object-oriented view of the world. There is a detailed methodology that describes how to ...
15
votes
13answers
1k views

Is UML a programming language?

Could UML be used to program a computer system on its own, without a supporting implementation language, e.g. diagrams straight to machine code (maybe via C or C++ etc), without human coding ...
6
votes
1answer
229 views

Experiences with using Alloy in real-world projects

I have been interested in formal methods for some time. I have used formal methods to reason about some very specific sub-areas of a few projects I have been working on. I was never able to convince ...
5
votes
3answers
259 views

Is there a MDSD/MDA success story for a real world application?

I am currently facing a situation where I as an advocate of test driven development have to compete with an advocate of model driven software development (MDSD) / model driven architecture (MDA). In ...
5
votes
3answers
85 views

Question about domain models & their visibility

I was involved in an interesting debate about the visibility of domain models & was wondering if people here have any good guidance. Per my understanding of MDA, we need not expose the domain ...
4
votes
3answers
145 views

Where have you used Model Driven Engineering, or Agile concepts? Opinions?

At our university we have "learned" about Model Driven Engineering. They provided a few examples, however I consider it still to be a fairly theoretical introduction. I'm now wondering where and how ...
4
votes
26answers
2k views

Is Oslo going to make the role of developer obsolete?

Before, during, and after The PDC there was plenty of talk about Model-Driven Development bringing about the obsolescence of "the developer" as we know it today. Many people are saying that because ...
3
votes
2answers
328 views

Model-driven Software Development vs. Haskell

Just reading the (german) Wiki-Article about Model-Driven SW-Development (MDSD). Summing up the Wiki-Definition: MDSD is about the DRY-Principle (Dont repeat youself) MDSD is about the Design of ...
3
votes
3answers
339 views

Recommendation for tool/framework that follows the naked objects pattern?

I am searching for a tool/framework that follows the naked objects pattern and is written in Java. I know about tools like for instance JMatter, Naked Objects and Domain Object Explorer. That's not ...
2
votes
1answer
179 views

Best practices for model driven development using LiveCycle Data Services

What are your advises on using model driven development in developing enterprise applications. Adobe's LiveCycle Data Services looks very promising, I have found numerous tutorials/videos that shows ...
2
votes
1answer
283 views

What is your review process for Rhapsody development?

My team is using the IBM's Rhapsody tool to do real-time embedded development. Unfortunately, we are unhappy with our current review process. More specifically, we've had difficulty because: there ...
2
votes
4answers
194 views

What are good tools for using Model Driven Development with Embedded work?

I believe there has been some up-take of model-driven development / engineering (aka OMGs model driven architecture) in the real-time and embedded software development sectors. What tools and tool ...
1
vote
1answer
107 views

Problem with predicate in Alloy

So I have the following bit of code in Alloy: sig Node { } sig Queue { root : Node } pred SomePred { no q, q' : Queue | q.root = q'.root } run SomePred for 3 but this won't yield any instance ...
1
vote
6answers
321 views

UML Modeling Tool For Use With Java+Playframework

I'm looking for a good modeling tool to use for designing java applications that use the playframework. Considerations: Should be able to generate valid java code for skeleton of play app Should ...
1
vote
1answer
343 views

How to communicate between Rhapsody models in different processes/systems?

We are using IBM (formerly Telelogic) Rhapsody for a new project to do model driven development of a complex device. The device consists of several subsystems that are connected by various network ...
1
vote
3answers
798 views

What unit testing tools are being used to test Rhapsody generated C++ code?

I am using the Rhapsody modeling tool to design multi-threaded C++ embedded applications. What unit testing approaches and tools are currently being employed for unit and functional test? Is anybody ...
0
votes
0answers
29 views

How to generate C code from an AADL model with eclipse/TOPCASED

We are using the AADL language to describe the architecture of a flight machine. We are working with TOPCASED 5.1.0 and using the ADELE graphical editor. The AADL sites suggests that is possible to ...
0
votes
1answer
64 views

Alloy fact NOT both properties

I have a piece of code in ALLOY I am trying to do a restaurant reservation system and I have this sig and relation between them. abstract sig Table{ breakfast: one breakFast, lunch: one Lunch, ...
0
votes
6answers
420 views

reverse engineer/create c# interface from sql server table

does anyone know how of a tool where I can point to my sql server database and it reads the schema and generates c# interface classes from the tables? for example - say I have a table called ...