<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/css" href="http://wiki.apidesign.org/skins/common/feed.css?116"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://wiki.apidesign.org/index.php?action=history&amp;feed=atom&amp;title=Usecase</id>
		<title>Usecase - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.apidesign.org/index.php?action=history&amp;feed=atom&amp;title=Usecase"/>
		<link rel="alternate" type="text/html" href="http://wiki.apidesign.org/index.php?title=Usecase&amp;action=history"/>
		<updated>2026-04-11T01:30:44Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.12.0rc1</generator>

	<entry>
		<id>http://wiki.apidesign.org/index.php?title=Usecase&amp;diff=8671&amp;oldid=prev</id>
		<title>JaroslavTulach at 15:13, 30 December 2015</title>
		<link rel="alternate" type="text/html" href="http://wiki.apidesign.org/index.php?title=Usecase&amp;diff=8671&amp;oldid=prev"/>
				<updated>2015-12-30T15:13:53Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;

			&lt;table style=&quot;background-color: white; color:black;&quot;&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;col class='diff-marker' /&gt;
			&lt;col class='diff-content' /&gt;
			&lt;tr&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;←Older revision&lt;/td&gt;
				&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 15:13, 30 December 2015&lt;/td&gt;
			&lt;/tr&gt;
		&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 16:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 16:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&amp;lt;/source&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;&amp;lt;/source&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt; &lt;/td&gt;&lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class='diff-marker'&gt;-&lt;/td&gt;&lt;td style=&quot;background: #ffa; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;[[Usecase]] are an important entry point when describing and documenting [[API]] [[DocumentDeclarativeAPI|abstractions]].&lt;/div&gt;&lt;/td&gt;&lt;td class='diff-marker'&gt;+&lt;/td&gt;&lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;[[Usecase]] are an important entry point when describing and documenting [[API]] [[DocumentDeclarativeAPI|abstractions&lt;ins style=&quot;color: red; font-weight: bold; text-decoration: none;&quot;&gt;]]. Always put [[usecase]]s into overview section of [[Javadoc]] of your [[API&lt;/ins&gt;]].&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>JaroslavTulach</name></author>	</entry>

	<entry>
		<id>http://wiki.apidesign.org/index.php?title=Usecase&amp;diff=2878&amp;oldid=prev</id>
		<title>JaroslavTulach: New page: High level description of an actual problem a user (of an API) may face. For example:   ''I want to alphabetically sort names of some persons''  Such usecase is then states that th...</title>
		<link rel="alternate" type="text/html" href="http://wiki.apidesign.org/index.php?title=Usecase&amp;diff=2878&amp;oldid=prev"/>
				<updated>2009-09-15T08:20:22Z</updated>
		
		<summary type="html">&lt;p&gt;New page: High level description of an actual problem a user (of an &lt;a href=&quot;/wiki/API&quot; class=&quot;mw-redirect&quot; title=&quot;API&quot;&gt;API&lt;/a&gt;) may face. For example:   ''I want to alphabetically sort names of some persons''  Such &lt;a href=&quot;/wiki/Usecase&quot; title=&quot;Usecase&quot;&gt;usecase&lt;/a&gt; is then states that th...&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;High level description of an actual problem a user (of an [[API]]) may face. For example:&lt;br /&gt;
&lt;br /&gt;
 ''I want to alphabetically sort names of some persons''&lt;br /&gt;
&lt;br /&gt;
Such [[usecase]] is then states that this is a problem that this [[API]] is ready to solve and is then followed by a ''scenario'' how to solve the given problem. For example:&lt;br /&gt;
&lt;br /&gt;
 ''Create a List of Strings. Put there the names. Use sort method.''&lt;br /&gt;
&lt;br /&gt;
Which is then reflected by the actual realization. In [[Java]]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;java&amp;quot;&amp;gt;&lt;br /&gt;
List&amp;lt;String&amp;gt; arr = new ArrayList&amp;lt;String&amp;gt;();&lt;br /&gt;
arr.add(&amp;quot;Tom&amp;quot;);&lt;br /&gt;
arr.add(&amp;quot;Petr&amp;quot;);&lt;br /&gt;
Collections.sort(arr);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Usecase]] are an important entry point when describing and documenting [[API]] [[DocumentDeclarativeAPI|abstractions]].&lt;/div&gt;</summary>
		<author><name>JaroslavTulach</name></author>	</entry>

	</feed>