hot questions tagged usecases - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T08:30:16Zhttp://stackoverflow.com/feeds/tag?tagnames=usecases&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1775943/use-case-diagram-question0Use case diagram questionPat2009-11-21T16:26:54Z2009-11-21T19:28:20Z
<p>I'm doing a use case diagram for taxi booking system, which should help controllers with booking and dispatching radio controlled taxis. Customers will have to pay in advance. If booking is not immediate (taxi needs to be available at some time in the future), the system should dispatch taxi without any involvement of the controller. Below is the link to the use case diagram:</p>
<p><a href="http://img260.imageshack.us/usecasediagram.jpg/" rel="nofollow">http://img260.imageshack.us/usecasediagram.jpg/</a></p>
<p>I’m not sure if I need to include customer (actor) in the diagram. Technically it is the controller who interacts with the system, however if I assume that “phone lines” are part of the system, than I think it makes sense to include customer. </p>
http://stackoverflow.com/questions/1696927/whats-is-the-difference-between-include-and-extend-in-use-case-diagram0What's is the difference between include and extend in use case diagram?sevugarajan2009-11-08T15:48:46Z2009-11-15T18:48:25Z
<p>What's is the difference between include and extend in a <a href="http://en.wikipedia.org/wiki/Use%5Fcase%5Fdiagram" rel="nofollow">use case diagram</a>?</p>
http://stackoverflow.com/questions/1111879/use-cases-with-time-as-an-actor0Use Cases With 'Time' As An ActorBrandon E Taylor2009-07-10T20:42:10Z2009-11-15T18:21:15Z
<p>What are the best practices for using use cases to model system behavior that is executed periodically based on a schedule (rather than executed as a direct result of an explicit user interaction)? </p>
<p>If 'time' is modeled as an actor, what are accepted approaches to describing how time is used to trigger the use case (e.g. whether the period is configurable, valid ranges, etc.)? </p>
http://stackoverflow.com/questions/1491051/in-a-use-case-description-document-how-do-we-describe-the-include-relationship-w0In a Use Case Description Document, how do we describe the include relationship with another use case. IndiDev2009-09-29T07:22:10Z2009-09-29T07:22:10Z
<p>In a Use case diagram, we can show the include relationship, but if we have to express the same in the description document, how is that to be done?</p>
http://stackoverflow.com/questions/164174/opinions-regarding-case-complete-or-use-case-software-competitors3Opinions regarding 'Case Complete' or Use Case software competitorsGern Blandston2008-10-02T19:40:43Z2009-08-24T16:41:20Z
<p>Have you had any good/bad experiences with <a href="http://www.casecomplete.com/" rel="nofollow">Case Complete</a>? Are there Use Case creation products like it that you would recommend?</p>
<p>Thank you</p>
http://stackoverflow.com/questions/16164/rss-atom-for-professional-use2RSS/Atom for professional usecringe2008-08-19T13:36:19Z2008-08-22T05:40:21Z
<p>I wondered if anyone can give an example of a professional use of RSS/Atom feeds in a company product. Does anyone use feeds for other things than updating news?</p>
<p>For example, did you create a product that gives results as RSS/Atom feeds? Like price listings or current inventory, or maybe dates of training lessons?</p>
<p>Or am I thinking in a wrong way of use cases for RSS/Atom feeds anyway?</p>
<p><strong>edit</strong> @<a href="http://beta.stackoverflow.com/users/573/abyx" rel="nofollow">abyx</a> has a really good example of a somewhat unexpected use of RSS as a way to get <em>debug</em> information from program transactions. I like the idea of this process. This is the type of use I was thinking of - besides publishing search results or last changes (like <a href="http://www.mediawiki.org" rel="nofollow">mediawiki</a>)</p>
http://stackoverflow.com/questions/337680/good-samples-of-software-development-use-cases2Good Samples of Software Development Use Casespearcewg2008-12-03T16:10:54Z2008-12-03T16:18:00Z
<p>Is there a repository on the web with good sample Use Cases for Software Development projects?</p>
<p>I'm really not looking for a template. I'm actually looking for a document which is a good sample that I can use as a reference. A word document.</p>
http://stackoverflow.com/questions/117401/is-it-possible-to-embed-cockburn-style-textual-uml-use-case-content-in-the-code-b5Is it possible to embed Cockburn style textual UML Use Case content in the code base to improve code readability?fooledbyprimes2008-09-22T20:27:14Z2008-09-27T02:28:54Z
<h2>experimenting with Cockburn use cases in code</h2>
<p>I was writing some complicated UI code. I decided to employ Cockburn use cases with fish,kite,and sea levels (discussed by Martin Fowler in his book 'UML Distilled'). I wrapped Cockburn use cases in static C# objects so that I could test logical conditions against static constants which represented steps in a UI workflow. The idea was that you could read the code and know what it was doing because the wrapped objects and their public contants gave you ENGLISH use cases via namespaces.</p>
<p>Also, I was going to use reflection to pump out error messages that included the described use cases. The idea is that the stack trace could include some UI use case steps IN ENGLISH.... It turned out to be a fun way to achieve a mini,psuedo light-weight Domain Language but without having to write a DSL compiler. So my question is whether or not this is a good way to do this? Has anyone out there ever done something similar? </p>
<p><hr /></p>
<p><em>c# example snippets follow</em></p>
<p>Assume we have some aspx page which has 3 user controls (with lots of clickable stuff). User must click on stuff in one particular user control (possibly making some kind of selection) and then the UI must visually cue the user that the selection was successful. Now, while that item is selected, the user must browse through a gridview to find an item within one of the other user controls and then select something. This sounds like an easy thing to manage but the code can get ugly. </p>
<p>In my case, the user controls all sent event messages which were captured by the main page. This way, the page acted like a central processor of UI events and could keep track of what happens when the user is clicking around. </p>
<p>So, in the main aspx page, we capture the first user control's event.</p>
<pre><code>using MyCompany.MyApp.Web.UseCases;
protected void MyFirstUserControl_SomeUIWorkflowRequestCommingIn(object sender, EventArgs e)
{
// some code here to respond and make "state" changes or whatever
//
// blah blah blah
// finally we have this (how did we know to call fish level method?? because we knew when we wrote the code to send the event in the user control)
UpdateUserInterfaceOnFishLevelUseCaseGoalSuccess(FishLevel.SomeNamedUIWorkflow.SelectedItemForPurchase)
}
protected void UpdateUserInterfaceOnFishLevelGoalSuccess(FishLevel.SomeNamedUIWorkflow goal)
{
switch (goal)
{
case FishLevel.SomeNamedUIWorkflow.NewMasterItemSelected:
//call some UI related methods here including methods for the other user controls if necessary....
break;
case FishLevel.SomeNamedUIWorkFlow.DrillDownOnDetails:
//call some UI related methods here including methods for the other user controls if necessary....
break;
case FishLevel.SomeNamedUIWorkFlow.CancelMultiSelect:
//call some UI related methods here including methods for the other user controls if necessary....
break;
// more cases...
}
}
}
//also we have
protected void UpdateUserInterfaceOnSeaLevelGoalSuccess(SeaLevel.SomeNamedUIWorkflow goal)
{
switch (goal)
{
case SeaLevel.CheckOutWorkflow.ChangedCreditCard:
// do stuff
// more cases...
}
}
}
</code></pre>
<p>So, in the MyCompany.MyApp.Web.UseCases namespace we might have code like this:</p>
<pre><code>class SeaLevel...
class FishLevel...
class KiteLevel...
</code></pre>
<p>The workflow use cases embedded in the classes could be inner classes or static methods or enumerations or whatever gives you the cleanest namespace. I can't remember what I did originally but you get the picture.</p>