command-pattern
What object-oriented GUI design would properly combine Command and Observer patterns?
Is there an object-oriented GUI design that would be a reasonable combination of the Command and Observer patterns?[详细]
2023-02-10 21:26 分类:问答Command Pattern leading to class explosion [closed]
Closed. This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing[详细]
2023-02-09 06:25 分类:问答Difference between Strategy pattern and Command pattern
开发者_开发技巧What is the difference between the Strategy pattern and the Command pattern?I am also looking for some examples in Java. Typically the Command pattern is used to make an object out of w[详细]
2023-02-07 22:07 分类:问答Get change commands without modifying collection
Probably a very poorly named title, but anyway... I am using the command pattern on a hierarchical data set. So basically I need a method that returns an object that describes the changes that will b[详细]
2023-02-06 14:03 分类:问答CGLib and serialization
What I want to do is to serialize a class that implements a command pattern so that I can run it later. In best[详细]
2023-01-30 13:03 分类:问答implementing a stack of commands for obtaining a transactional behaviour- Delphi
I need to create a tool for performing complex scripts against a database. For several resasons I cannot rely on DB transactional behaviour, but I need to implement my own transactional system.[详细]
2023-01-24 04:47 分类:问答Using a strategy pattern and a command pattern
Both design patterns encapsulate an algorithm and decouple implementation details from their calling classes. The only difference I can discern is that th开发者_JAVA技巧e Strategy pattern takes in par[详细]
2023-01-19 15:41 分类:问答Example of Command pattern in context of a non-AJAX website
I have seen numerous examples of the Command pattern But they all tend to be in the context of a desk-top application.[详细]
2023-01-16 23:12 分类:问答Are "volatile" data bindings in Windows Forms possible?
Let\'s assume I\'m implementing a Winforms UI where all commands adhere to the following pattern: interface ICommand[详细]
2023-01-09 13:59 分类:问答Persistent Command pattern
what I am trying to achieve is to have a persistent list of \"undoable\" changes on a persistent storage (database).[详细]
2023-01-08 13:29 分类:问答