active questions tagged design-patterns - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T19:23:46Z http://stackoverflow.com/feeds/tag/design-patterns http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1947951/the-anti-dry-pattern 3 The anti-DRY pattern Chris 2009-12-22T17:33:22Z 2009-12-22T19:00:37Z <p>I've written this set of code and feel that it's pretty poor in quality. As you can see, in each of the four case statements I'm ending up repeating an awful lot of the same code except for a few variations in each case. Items that vary; session names, gridnames and the ManagerContext group name. Can anyone take this mess of code and show me a better way of doing this?</p> <pre><code>private void LoadGroup(string option) { switch (option.ToUpper()) { case "ALPHA": VList&lt;T&gt; alphaList = FetchInformation(ManagerContext.Current.Group1); if (Session["alphaGroup"] != null) { List&lt;T&gt; tempList = (List&lt;T&gt;)Session["alphaGroup"]; alphaList.AddRange(tempList); } uxAlphaGrid.DataSource = alphaList; uxAlphaGrid.DataBind(); break; case "BRAVO": VList&lt;T&gt; bravoList = FetchInformation(ManagerContext.Current.Group2); if (Session["bravoGroup"] != null) { List&lt;T&gt; tempList = (List&lt;T&gt;)Session["bravoGroup"]; bravoList.AddRange(tempList); } uxBravoGrid.DataSource = bravoList; uxBravoGrid.DataBind(); break; case "CHARLIE": VList&lt;T&gt; charlieList = FetchInformation(ManagerContext.Current.Group3); if (Session["charlieGroup"] != null) { List&lt;T&gt; tempList = (List&lt;T&gt;)Session["charlieGroup"]; charlieList.AddRange(tempList); } uxCharlieGrid.DataSource = charlieList; uxCharlieGrid.DataBind(); break; case "DELTA": VList&lt;T&gt; deltaList = FetchInformation(ManagerContext.Current.Group4); if (Session["deltaGroup"] != null) { List&lt;T&gt; tempList = (List&lt;T&gt;)Session["deltaGroup"]; deltaList.AddRange(tempList); } uxDeltaGrid.DataSource = deltaList; uxDeltaGrid.DataBind(); break; default: break; } } </code></pre> http://stackoverflow.com/questions/1946918/where-would-you-use-a-builder-pattern-instead-of-an-abstract-factory 4 Where would you use a Builder Pattern instead of an Abstract Factory? Lino Rosa 2009-12-22T15:04:04Z 2009-12-22T17:27:07Z <p>I've seen this question rise here and there a few times, but I never found and answer I was happy with.</p> <p>From Wikipedia:</p> <blockquote> <p>Builder focuses on constructing a complex object step by step. Abstract Factory emphasizes a family of product objects (either simple or complex). Builder returns the product as a final step, but as far as the Abstract Factory is concerned, the product gets returned immediately.</p> </blockquote> <p>But to the client isn't it the same thing? He gets the full object once it's built, so to him there is no added functionality.</p> <p>The only way I see it is as a way or organizing the constructor code in steps, to force a structure for the implementation of the builders. Which is nice, but hardly a great step from the abstract factory.</p> <p><hr></p> <p>This next bit from Wikipedia is a good reference to get to my point:</p> <blockquote> <p>Often, designs start out using Factory Method (less complicated, more customizable, subclasses proliferate) and evolve toward Abstract Factory, Prototype, or Builder (more flexible, more complex) as the designer discovers where more flexibility is needed.</p> </blockquote> <p>If that's so, what kind of complexity would have to be introduced in your system where you would change from a Abstract Factory to a Builder?</p> <p>My point is that I can't find and example where it's clear that an Abstract Factory won't suffice and you would need a Builder instead.</p> http://stackoverflow.com/questions/1947374/table-module-table-gateway-where-to-put-code-for-loading-from-gateways 0 Table Module / Table Gateway - Where to put code for loading from gateways? rob 2009-12-22T16:13:12Z 2009-12-22T16:13:12Z <p>Not sure if there is a "correct" answer to this, so I've flagged it as community wiki. Apologies for the long pre-amble.</p> <p>I am building a modestly sized web application in .Net, and have settled on a table based architecture. My DAL layer consists of a set of TableGateway classes that handle loading/saving data to the database - these return strongly typed DataSets. Application logic is organised into a set of TableModule classes. Finally my ASPX pages handle displaying stuff and passing form values etc. to the TableModules to be worked on.</p> <p><strong>What puzzles me is who should take responsibility for calling the TableGateway to get the DataSet, the ASPX code-behind or the TableModule?</strong></p> <p>Example 1 - ASPX does it:</p> <p>SomePage.aspx.cs:</p> <pre><code> protected void AddLink_Click(object sender, EventArgs args) { long id = long.Parse(PopulationDropDown.SelectedValue); string someProperty = SomePropertyTextBox.Text; IPopulationGateway populationGateway = DALServicesLocator.GetPopulationGateway(); PopulationDataSet populationData = populationGateway.LoadPopulationDetails(id); PopulationModule.SomeLogicToAddStuff(populationData, id, someProperty); populationGateway.Save(populationData); } </code></pre> <p>Example 2 - TableModule does it:</p> <p>SomePage.aspx.cs:</p> <pre><code> protected void AddLink_Click(object sender, EventArgs args) { long id = long.Parse(PopulationDropDown.SelectedValue); string someProperty = SomePropertyTextBox.Text; // Just pass values to the TableModule and let it talk to the Gateway. PopulationModule.SomeLogicToAddStuff(id, someProperty); } </code></pre> http://stackoverflow.com/questions/1931335/what-is-mvc-in-ruby-on-rails 1 What is MVC in Ruby on Rails? Imran 2009-12-18T23:46:08Z 2009-12-22T16:04:04Z <p>Could someone please explain MVC to me in Ruby on Rails, in layman terms. I am especially interested in understanding the Model in MVC (Can't get my head around the model) </p> <p>Thank you in advance.</p> http://stackoverflow.com/questions/244706/learning-implementing-design-patterns-for-newbies 31 Learning/Implementing Design Patterns (For Newbies) Ashlocke 2008-10-28T20:22:36Z 2009-12-22T14:13:44Z <p>I'm a confused newbie and hobbyist programmer trying to get a grip on this, so forgive me if my question is a little off or doesn't make much sense.</p> <p>I see a lot of questions on SO revolving around the use of design patterns, and I'm wondering if anyone has a good resources for learning about, and implementing design patterns? I understand the general idea, and know how/when to use a couple of them(Singletons, Factory methods) but I know I'm missing out.</p> <p>(Just in case it matters, my language of preference is C# but I could learn from examples in other languages)</p> http://stackoverflow.com/questions/1945943/new-to-start-with-design-patterns 2 New to start with Design Patterns [closed] Murty 2009-12-22T11:57:40Z 2009-12-22T13:53:46Z <blockquote> <p><strong>Possible Duplicates:</strong><br> <a href="http://stackoverflow.com/questions/1865999/which-resources-would-you-recommend-for-learning-object-oriented-programming-c">which resources would you recommend for learning object oriented programming (C#)?</a><br> <a href="http://stackoverflow.com/questions/244706/learning-implementing-design-patterns-for-newbies">Learning/Implementing Design Patterns (For Newbies)</a> </p> </blockquote> <p>Hello everyone, I was working in Information Technology for few years. I was planning to learn designing / design patterns and wes really confused where to start and how to start (books/links/suggestions). Even though I I get lot of information from internet, but still I hope this is the right plase to ask the question and could get the right answers/guidance. Thanks in advance.</p> http://stackoverflow.com/questions/804751/what-is-the-difference-between-the-data-mapper-table-data-gateway-gateway-dat 6 What is the difference between the Data Mapper, Table Data Gateway (Gateway), Data Access Object (DAO) and Repository patterns? Wayne M 2009-04-29T23:25:29Z 2009-12-22T11:57:14Z <p>I'm trying to brush up on my design pattern skills, and I'm curious what are the differences between these patterns? All of them seem like they are the same thing - encapsulate the database logic for a specific entity so the calling code has no knowledge of the underlying persistence layer. From my brief research all of them typically implement your standard CRUD methods and abstract away the database-specific details.</p> <p>Apart from naming conventions (e.g. CustomerMapper vs. CustomerDAO vs. CustomerGateway vs. CustomerRepository), what is the difference, if any? If there is a difference, when would you chose one over the other?</p> <p>In the past I would write code similar to the following (simplified, naturally - I wouldn't normally use public properties):</p> <pre><code>public class Customer { public long ID; public string FirstName; public string LastName; public string CompanyName; } public interface ICustomerGateway { IList&lt;Customer&gt; GetAll(); Customer GetCustomerByID(long id); bool AddNewCustomer(Customer customer); bool UpdateCustomer(Customer customer); bool DeleteCustomer(long id); } </code></pre> <p>and have a <code>CustomerGateway</code> class that implements the specific database logic for all of the methods. Sometimes I would not use an interface and make all of the methods on the CustomerGateway static (I know, I know, that makes it less testable) so I can call it like:</p> <pre><code>Customer cust = CustomerGateway.GetCustomerByID(42); </code></pre> <p>This seems to be the same principle for the Data Mapper and Repository patterns; the DAO pattern (which is the same thing as Gateway, I think?) also seems to encourage database-specific gateways.</p> <p>Am I missing something? It seems a little weird to have 3-4 different ways of doing the same exact thing.</p> http://stackoverflow.com/questions/1942244/mixing-logic-and-graphics-in-a-class-with-mvc-pattern 0 Mixing logic and graphics in a class with MVC pattern Fungus 2009-12-21T19:57:03Z 2009-12-22T10:06:32Z <p>I am currently developing a charting application (for the iPhone, although that is largely irrelevant) using their MVC pattern. </p> <p>One aspect of the application is that you can overlay a number of statistics on the charts. I am a little unsure how I am going to structure these classes.</p> <p>For each statistic there will be two aspects.</p> <p><strong>1. The calculation.</strong> The function which will take the data and calculate the relevant statistical figures.</p> <p><strong>2. The display.</strong> The statistics then need to be drawn over the top of the graph.</p> <p>Obviously I want the code to comply with the MVC pattern as closely as possible, but I am planning to develop possibly hundreds of these statistics. </p> <p>I could create three classes. One for the graphics, one for the logic and a factory class to tie the two together. This would then fit with the pattern, but this seems to be a huge extra overhead in terms of the number of classes in the system and additional complexity which I dont feel is necessary.</p> <p>So, I am very tempted to create a single class for each statistic. But that would mean each class would have logic and graphics mixed in together, which is heavily frowned upon.</p> <p>Are there any other suggestions as to how I can lay these out in a structured reuseable way without adding uneccessary complexity?</p> <p><strong>EDIT</strong></p> <p>Thanks for the answers. Most useful, but has raised more questions!</p> <p>MVC does fit the rest of the application perfectly. Also as its for the iPhone, I seem to be pushed along this path anyway. This is the only reason I am considering MVC for these statistics.</p> <p>However, for these statistics, the user will not interact with them, they are purely for display. The statistics are painting various lines and symbols directly onto the view canvas. Each statistic paints their information in its own way. There is very little that can be shared between each one, also each piece of data can only be useful represented in one way. I can think of no other useful way that I would want to represent the information.</p> <p>So it seems MVC is out for these, but I am unsure now what pattern would fit other than my newly invented "Mix logic and graphics" pattern which just feels wrong due to the <a href="http://en.wikipedia.org/wiki/Single%5Fresponsibility%5Fprinciple" rel="nofollow">Single Responsibility Principle</a> (thanks for that link). </p> http://stackoverflow.com/questions/1944460/best-way-to-create-a-viewmodel-in-mvvm 0 Best way to create a ViewModel in MVVM Appu 2009-12-22T06:14:59Z 2009-12-22T06:25:40Z <p>Assume I have a class called <code>Customer</code>. Now I need to render the customer on view. So I created <code>CustomerViewModel</code> to use in binding. I am looking for the best way to create the <code>CustomerViewModel</code> class. Following are my thoughts on creating it.</p> <p>1 - Create all the properties in the customer again on the view model. Inject the customer instance into view model and each properties will retrun the value from this customer object. Advantage of this method is that I can create a common base class for all view models and have common functionality dumped there. Disadvantage will be the time required to create all the properties again on the view model and doing the maintenance. </p> <p>2 - Derive the view model from customer. So I have all the propeties of customer in view model. But this will not allow me to use a common base class and put common view model logic there. </p> <p>So I am wondering what will be the best method to create a view model? Is there any alternative methods that are better than what I thought?</p> http://stackoverflow.com/questions/1920529/am-i-overdoing-it-with-my-factory-method 5 Am I overdoing it with my Factory Method? jammus 2009-12-17T09:38:20Z 2009-12-21T22:32:13Z <p>Hello.</p> <p>Part of our core product is a website CMS which makes use of various page widgets. These widgets are responsible for displaying content, listing products, handling event registration, etc. Each widget is represented by class which derives from the base widget class. When rendering a page the server grabs the page's widget from the database and then creates an instance of the correct class. The factory method right?</p> <pre><code>Private Function WidgetFactory(typeId) Dim oWidget Select Case typeId Case widgetType.ContentBlock Set oWidget = New ContentWidget Case widgetType.Registration Set oWidget = New RegistrationWidget Case widgetType.DocumentList Set oWidget = New DocumentListWidget Case widgetType.DocumentDisplay End Select Set WidgetFactory = oWidget End Function </code></pre> <p>Anyways, this is all fine but as time has gone on the number of types of widgets has increased to around 50 meaning the factory method is rather long. Every time I create a new type of widget I go to add another couple of lines to the method and a little alarm rings in my head that maybe this isn't the best way to do things. I tend to just ignore that alarm but it's getting louder.</p> <p>So, am I doing it wrong? Is there a better way to handle this scenario?</p> http://stackoverflow.com/questions/1941738/java-design-pattern-help 1 Java Design Pattern Help Peter Delaney 2009-12-21T18:19:13Z 2009-12-21T22:03:00Z <p>Hello I am trying to build a framework of <em>IAction</em> objects that will execute in a sequence. Each <em>IAction</em> implementation will execute its <b>processAction()</b> method as it was implemented for. This method returns a <em>IAction</em>, which in most cases is itself, but in some cases may be a pointer to another <em>IAction</em> in the List. The <em>IActionIterator</em> interface is created to manage that movement in the List. Here is the interface</p> <pre><code> public interface IAction { public IAction processAction(); } pulbic interface IActionIterator { public IAction getFirstAction(); public IAction getNextAction( IAction action ); } </code></pre> <p>My framework will obtain a <b>List</b> and will loop thru the list executing the <b>processAction()</b> of each <em>IAction</em> class. Here is what the loop will look like</p> <pre><code> IActionIterator iter = ... // created some how IAction action = iter.getFirstAction(); do { IAction newAction = action.processAction(); if( action.equals( newAction ) action = iter.getNextAction( action ); else action = newAction; while( action != null ) { </code></pre> <p>So each <em>IAction</em> has its implementation to execute and some <em>IAction</em> have business logic that will return an <em>IAction</em> in the list instead of executing the next one in the list. </p> <p>I am anticipating some <em>IAction</em> classes that will execute, but the next <em>IAction</em> in the list will need the results from the first. For example one of the <em>IAction</em> is executing an SQL query and the results are pertinent to the next IAction in the list.</p> <p>So my question is how would or should I implement this in information passing form <em>IAction</em> to <em>IAction</em> in my designed Framework?</p> http://stackoverflow.com/questions/1942089/using-mvc-to-implement-a-framework-in-javascript 1 Using MVC to implement a framework in JavaScript Mike Gleason jr Couturier 2009-12-21T19:28:33Z 2009-12-21T19:35:47Z <p>Hi,</p> <p>I'm doing .NET MVC a lot so I think I understand the MVC design pattern. I'm analyzing my projects according to the Domain Driven Design (Eric Evans) methodology. Anyways..</p> <p>But in JavaScript it's hard for me to think "MVC" when I'm creating libraries.</p> <p>Do you have a small example or any experience to share with me on how a small JavaScript could use the MVC design pattern?</p> <p>I'm quite comfortable with JavaScript.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1939928/oo-design-patterns-for-multi-threaded-synchronisation 1 OO design patterns for multi-threaded synchronisation martinr 2009-12-21T12:50:45Z 2009-12-21T13:20:11Z <p>Are there any generalisations of object and data and thread interactions given design pattern names?</p> <p>Obviously what goes on a lot is synchronisation on an object, passing messages through a queue and also reference counts in memory management systems.</p> <p>But are there any more OO-oriented names for multithreading design patterns and systems that cleanly embody best practice?</p> http://stackoverflow.com/questions/1939403/mvvm-viewmodel-vs-mvc-viewmodel 1 MVVM ViewModel vs. MVC ViewModel Neil Barnwell 2009-12-21T10:42:41Z 2009-12-21T11:35:13Z <p>ViewModel is a term that is used in both MVVM (Model-View-ViewModel) and the recommended implementation for ASP.NET MVC. Researching "ViewModel" can be confusing given that each pattern uses the same term.</p> <p>What are the main differences between the MVC ViewModel and MVVM ViewModel? For example, I believe the MVVM ViewModel is more rich, given the lack of a Controller. Is this true?</p> http://stackoverflow.com/questions/203336/creating-the-singleton-design-pattern-in-php5 3 Creating the Singleton design pattern in PHP5 Andrew Moore 2008-10-15T00:33:27Z 2009-12-21T10:22:52Z <p>How would one create a Singleton class using PHP5 classes?</p> http://stackoverflow.com/questions/620436/use-of-service-agents-while-calling-web-service 1 Use of Service Agents while calling web Service Sappidireddy 2009-03-06T21:11:08Z 2009-12-21T03:00:03Z <p>Can any one explain the use of service agent while calling web service? how it fit in project architecture?</p> http://stackoverflow.com/questions/1937817/how-is-learning-software-patterns-helpful-in-life 0 How is learning software patterns helpful in life [closed] Phenom 2009-12-21T01:58:42Z 2009-12-21T02:08:39Z <p>I started to learn about software patterns, and how they originally came from the architectural discipline. I'm wondering if they are also applicable not only to making software but to life's problems as well.</p> http://stackoverflow.com/questions/1723857/patterns-for-declaring-functions-for-grater-readability 1 Patterns for declaring functions for grater readability Smith325 2009-11-12T17:14:17Z 2009-12-21T02:00:11Z <p>In C++ functions needed to be declared before they were called. This could be worked around with function signatures but for the most part this is no longer required in newer programming languages, C#, Python, ETC.</p> <p>However, while reading other peoples, code and when having to structure functions in a class, I find that I miss the consistency that existed in C++.</p> <p>What patterns exist to declare/order function while maintaining readability and understanding about the structure of your code?</p> <p><strong>Edit 1</strong></p> <p><hr></p> <p>Here is an rough example.</p> <pre><code>class A { private FunkB() { ... } private FunkC() { ... } public FunkA() { FunkB(); FunkC(); } public FunkD() { FunkC(); ... } } </code></pre> <p>v.s.</p> <pre><code>class A { public FunkA() { FunkB(); FunkC(); } private FunkB() { ... } private FunkC() { ... } public FunkD() { FunkC(); ... } } </code></pre> <p><strong>Edit 2</strong></p> <p><hr></p> <p>This would be a guideline for writing code regardless of editors. Newer editors have excellent "go to definition" features and book marks help out with this too. However I'm interested in a <strong>editor independent</strong> pattern. </p> http://stackoverflow.com/questions/1937100/is-there-a-dp-to-solve-a-problem-where-one-type-of-class-can-be-used-only-by-anot 0 Is there a DP to solve a problem where one type of class can be used only by another type? Itay Moav 2009-12-20T21:23:20Z 2009-12-20T21:43:26Z <p>I have a class which I want it's instances to be used <strong>only</strong> by a certain other classes.<br> Is there a known design pattern for such a problem?<br> An example for such a necessity would be a case of a big application (a team of 10) with BL objects and DL objects under a MVC hood, where I want to make sure only the BL classes can call/use the DL classes. Not in the controllers/views/helpers etc.<br> I am using PHP (which means I have no sub classes).</p> http://stackoverflow.com/questions/1935715/mvc-model-in-mfc 0 MVC model in MFC Idan 2009-12-20T12:34:56Z 2009-12-20T21:23:45Z <p>how are the classses in MFC match the model-view-control pattern ?</p> <p>the model is suppose to handle the Business Logic , the control suppose to be some kind of mediator and the view suppose to be the gui ?</p> <p>what class in MFC represent each one ? cause it seems pretty different to me as i read more about mfc. (seems like CView represent the control, CfrmWnd the view , and CDocumnet the data- though i'm not sure if by data they mean BL)</p> <p>clarifications ?</p> http://stackoverflow.com/questions/1932054/raii-for-singleton 1 RAII for singleton shiouming 2009-12-19T05:27:08Z 2009-12-20T14:55:54Z <p>I have a singleton class, whose instance get initialized at global scope within the class's CPP file:</p> <pre><code>Singleton* Singleton::uniqueInstance = new Singleton(); </code></pre> <p>Its header file looks like:</p> <pre><code>class Singleton { public: static Singleton&amp; getInstance() { return *uniqueInstance; } static bool destroyInstance() { delete uniqueInstance; } private: //... //... typical singleton stuff static Singleton* uniqueInstance; }; // end of class Singleton </code></pre> <p>I noticed that its destructor dodn't get executed during program termination, thus I added a public static interface <code>Singleton::destroyInstance()</code>, to be manually invoke by client code before the program exits, for instance deletion. This snippet is not the complete code, and assumed that there are other codes that dealing with thread safety issue. In this case, how can I make use of RAII to eliminate the need of introducing such an interface? Thanks for advice.</p> http://stackoverflow.com/questions/719040/mvc-where-do-you-put-ajax-scripts 3 MVC - where do you put AJAX scripts? Abi Noda 2009-04-05T14:51:34Z 2009-12-20T10:39:38Z <p>I am using <a href="http://kohanaphp.com/" rel="nofollow">Kohana</a> but this question applies to Rails, CI, or any other MVC web development framework. Where is the best place to stick one's server side AJAX scripts? </p> <p>I was <em>planning</em> on creating an Ajax_Controller and using a method/action per individual script.</p> <p>For example, a login form on the home page <strong><code>index.php/home</code></strong> would send an XMLHttpRequest to <strong><code>index.php/ajax/login</code></strong>, and the edit profile form <strong><code>index.php/profile/edit</code></strong> would send an XMLHttpRequest to <strong><code>index.php/ajax/editprofile</code></strong>. What's the best practice?</p> http://stackoverflow.com/questions/1935066/using-pattern-adapter-for-image-viewer 0 Using pattern Adapter for Image Viewer taksos 2009-12-20T06:48:38Z 2009-12-20T06:48:38Z <p>Hi!</p> <p>I do the Image Viewer. I want to use GDI+ for showing a picture in a window. And the library boost::gil for rotating, converting, resizng an image. But GDI+ contains Image class and boost::gil contains other class Image.</p> <p>How can I use the pattern Adapter for my task? Or what pattern should I use?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1934101/ui-and-application-relationship 0 UI and Application relationship Eyalk 2009-12-19T20:51:06Z 2009-12-19T23:02:46Z <p>Hi All,</p> <p>I've read a lot of articles about the UI ,buisness logic ,WCF ,IoC, but still, one thing is missing from my mind. I build a winforms application and a console app. the Console App is the brain. Now, in all the client-server architecture the client "know" the server , send him request and get the answer. My qestion is as follow:</p> <p>1) How can the console application display a message to the user if he doens't know the existence of the UI? Should the UI check and pool for the messages every x msec? is it a good approach?</p> <p>2) what in the case that the UI forms should display a ticker price ,e.g stock price which changes all the time ? should it request the ticker price from the console app every 200msec? or register a callback function in the console application so the console application can call it? However, doesn't it make the UI into a server now?</p> <p>3) What happen in case that I want to add a terminal capbilities to my application (e.g telnet cli ), how should I design it ? the telnet server as a client and my console application as the server? is there a design that can help me to achieve that? CAB? I asked a lot of people and it seem that nobody is using it... is that so?</p> <p>Thanks, Eyal</p> http://stackoverflow.com/questions/1910223/advantages-of-domain-object-representing-only-elements-of-one-type-over-being-abl 1 Advantages of Domain object representing only elements of one type over being able to represent several different types of elements carewithl 2009-12-15T20:38:05Z 2009-12-19T19:26:02Z <p>hi</p> <p><br></p> <p>1) As far as I’m aware, each domain object instance ( at BLL layer ) should completely represent an element of the domain ( an employee, book, car etc ). </p> <p><br></p> <p>So what is an advantage of having two types of domain objects, say one type representing a particular forum and other type representing a thread(s) in that forum, over having a single domain object type representing both a forum and thread(s) inside this forum? </p> <p>Another example: what’s an advantage of having two types of domain objects, one representing an instance of a car, and other representing an instance of a bus, instead of having a single type of a domain object representing both a car and a bus?</p> <p><br></p> <p>2) Should domain object instance always represent an individual item of certain type, or can they also represent a group of items of same type? For example, is there a situation where a single object instance should represent a group of employees and not just a single employee?</p> <p><br></p> <p>thanx </p> http://stackoverflow.com/questions/1930570/class-design-question 0 class design question Tony 2009-12-18T20:42:16Z 2009-12-19T13:14:06Z <p>Suppose I have two classes </p> <pre><code>class A { b bInstance; public A ( b newb ) { this.bInstance = newb; } } class B { // some data and methods go here } class List&lt;A&gt; { // list of A objects also holding reference to a B object } </code></pre> <p>For every one object of A, there is a related object B. </p> <p>Now I want to do some operations on data from class A &amp; B, is it better to create a new class or do the operations in Class A or in the collections class?</p> <p>EDIT:</p> <p>I need to use data from Class A and use it with data of Class B to create an end result. The data is seperate, so I don't want to merge them in one Class. That wouldn't make sense. </p> <p>Mostly string operations, as data is string data.</p> <p>What is the best design practice for this? If there is one?</p> http://stackoverflow.com/questions/670808/network-communication-design-patterns 5 Network Communication Design Patterns Mystere Man 2009-03-22T10:19:40Z 2009-12-19T12:22:48Z <p>I've come to realize that several questions I asked in the past, such as <a href="http://stackoverflow.com/questions/622735/how-have-you-structured-your-network-oriented-apps">this</a> really boil down to a more fundamental question.</p> <p>Are there any well known design patterns for network communications and by virtue of it's nature, protocol construction/parsing? A google search has not revealed much.</p> <p>Note that i'm not looking for solutions for any given problem, i'm looking for documented design patterns dealing with network communications and their protocols.</p> <p>EDIT:</p> <p>Please, don't suggest various implementation details or discuss specific protocols unless it's tied to a design pattern. Protocol design is not the issue, it's the design patterns for creating or parsing protocols that i'm looking for, not to mention the communication patterns themselves.</p> <p>EDIT2:</p> <p>I find it hard to believe that nobody has come up with any common patterns for network communication. Yes, I know "it depends", but you can say that about any project, yet there are lots of patterns that cover general ideas. </p> http://stackoverflow.com/questions/1849630/efficient-storage-retrieval-method-for-replayable-comet-style-applications-googl 1 Efficient storage/retrieval method for replayable comet style applications (Google Wave, Etherpad) Gareth Simpson 2009-12-04T21:02:04Z 2009-12-18T22:24:17Z <p>I am considering a web application that would have the same kind of multi user, automatic saving, infinite undo / replay capabilities that you see in Google Wave and Etherpad (albeit on a drastically smaller scale and userbase). </p> <p>Before I go away and reinvent the wheel, is this something that has already been addressed as either a piece of technology or library, or even just a design pattern.</p> <p>I know this isn't necessarily the best Stack Overflow question as there is probably not a "right" answer, but my Google-fu has failed me and I'd just like a reading list!</p> <p>Ordinarily I would be developing under python/django but this is not a firm requirement just a preference :) </p> http://stackoverflow.com/questions/1918793/why-does-uitableview-make-so-many-calls-to-its-delegate-datasource 2 Why does UITableView make so many calls to its delegate & datasource? Meltemi 2009-12-17T00:40:21Z 2009-12-18T19:55:51Z <p>Anyone care to shed some light on why UITableView makes so many repeat calls to its delegate &amp; datasource as it's being setup? Just looking at one I'm working on now I see that <code>numberOfSectionsInTableView</code> is called 3 times and then <code>viewForHeaderInSection</code> cycles through 3 more times for <em>each</em> section...all before the first screen is even rendered.</p> <p>I realize that the API is <em>private</em> but wondering if someone might be willing to offer up some insight into this <strong>design pattern</strong> and what <em>might</em> be going on behind the scenes so I might learn a thing or two about why so much repetition is considered acceptable (or even advantageous) in this case.</p> <p>Edit: Adding stack trace from Apple's Sample project "</p> <pre><code>#0 0x0000239e in -[RootViewController numberOfSectionsInTableView:] at RootViewController.m:78 #1 0x00422d7e in -[UITableViewRowData(UITableViewRowDataPrivate) _updateNumSections] #2 0x00422af2 in -[UITableViewRowData invalidateAllSections] #3 0x002e2883 in -[UITableView(_UITableViewPrivate) _updateRowData] #4 0x002dd1d4 in -[UITableView numberOfSections] #5 0x00460187 in -[UITableViewController viewWillAppear:] #6 0x0031bee5 in -[UINavigationController _startTransition:fromViewController:toViewController:] #7 0x0031731a in -[UINavigationController _startDeferredTransitionIfNeeded] #8 0x004352e4 in -[UILayoutContainerView layoutSubviews] #9 0x035332b0 in -[CALayer layoutSublayers] #10 0x0353306f in CALayerLayoutIfNeeded #11 0x035328c6 in CA::Context::commit_transaction #12 0x0353253a in CA::Transaction::commit #13 0x00294ef9 in -[UIApplication _reportAppLaunchFinished] #14 0x0029ab88 in -[UIApplication handleEvent:withNewEvent:] #15 0x002966d3 in -[UIApplication sendEvent:] #16 0x0029d0b5 in _UIApplicationHandleEvent #17 0x023a2ed1 in PurpleEventCallback #18 0x01bb5b80 in CFRunLoopRunSpecific #19 0x01bb4c48 in CFRunLoopRunInMode #20 0x00294e69 in -[UIApplication _run] #21 0x0029e003 in UIApplicationMain #22 0x00002014 in main at main.m:53 </code></pre> <p>2nd time: </p> <pre><code>#0 0x0000239e in -[RootViewController numberOfSectionsInTableView:] at RootViewController.m:78 #1 0x00422d7e in -[UITableViewRowData(UITableViewRowDataPrivate) _updateNumSections] #2 0x00422af2 in -[UITableViewRowData invalidateAllSections] #3 0x002e2883 in -[UITableView(_UITableViewPrivate) _updateRowData] #4 0x002dd367 in -[UITableView noteNumberOfRowsChanged] #5 0x002e7554 in -[UITableView reloadData] #6 0x002e489f in -[UITableView layoutSubviews] #7 0x035332b0 in -[CALayer layoutSublayers] #8 0x0353306f in CALayerLayoutIfNeeded #9 0x035328c6 in CA::Context::commit_transaction #10 0x0353253a in CA::Transaction::commit #11 0x00294ef9 in -[UIApplication _reportAppLaunchFinished] #12 0x0029ab88 in -[UIApplication handleEvent:withNewEvent:] #13 0x002966d3 in -[UIApplication sendEvent:] #14 0x0029d0b5 in _UIApplicationHandleEvent #15 0x023a2ed1 in PurpleEventCallback #16 0x01bb5b80 in CFRunLoopRunSpecific #17 0x01bb4c48 in CFRunLoopRunInMode #18 0x00294e69 in -[UIApplication _run] #19 0x0029e003 in UIApplicationMain #20 0x00002014 in main at main.m:53 </code></pre> http://stackoverflow.com/questions/1929610/collections-and-application-wide-use 0 collections and application wide use? Tony 2009-12-18T17:27:18Z 2009-12-18T17:45:47Z <p>Here's a specific problem that I run into when creating objects, such as collections, that need to be available through the whole scope of the application.</p> <p>I have the following class:</p> <pre><code> class UserDataCollection { List&lt;UserData&gt; Collection = new List&lt;UserData&gt;(); UserData current; public UserData Current { get { return current; } set { current = value; } } public UserDataCollection( UserData userdata ) { this.current = userdata; } public void Add ( UserData item ) { Collection.Add(item); } } </code></pre> <p>Now for every UserData object I want to add, it's going to create a new List object each time I go <code>UserDataCollection datacoll = new UserDataCollection(userdata);</code></p> <p>So my objects will never be added to the same collection, which is not the point of this collection.</p> <p>Is this then a good singleton case or just create the object at Application Init and use the same object throughout?</p> <p>What's the best design practice for something like this?</p>