Tagged Questions
52
votes
15answers
3k views
Long list of if statements in Java
Sorry I can't find a question answering this, I'm almost certain someone else has raised it before.
My problem is that I'm writing some system libraries to run embedded devices. I have commands ...
7
votes
1answer
1k views
Why use the command pattern in GWT (or any web app)?
According to this video here Google is recommending the use of the Command pattern on top of its request handling API. There is also a helpful looking project gwt-dispatch that implements that ...
6
votes
1answer
637 views
Command Pattern - return a value
I'm using the command pattern for passing a command from a client to a server via a TCP/IP socket. The server will take the command object, deserialize it and then call execute() on the command ...
2
votes
1answer
268 views
command pattern for this scenario? advice
good evening all. ive been reading up on the command pattern and im wondering if it's a good fit for what i want to build.
essentially, i have a client that forms a socket connection with a server. ...
1
vote
1answer
335 views
Command Pattern - parameters
I'm looking to use the command pattern in a distributed client/server environment. Essentially, the receivers 'execute' methods will need to take various parameters, however I read that each command ...
1
vote
1answer
266 views
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
of all worlds, I would like to serialize an anonymous class (I'm
aware of the problems ...
0
votes
3answers
60 views
issues with implementing command pattern in Java
I was trying to do a simple implementation of the command patter in java. However, I am getting the following error:
java.lang.ClassNotFoundException: AddCommand
Exception in thread "main" ...
0
votes
1answer
236 views
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?
My Java GUI attempts to combine Command and Observer patterns as follows:
the ...
0
votes
5answers
2k views
Java + Command Pattern + Spring + remoting : How to inject dependencies to Command object?
In my current project I'm dealing with EJBs implementing huge interfaces.
Implementation is done through a business delegate, which implement the same interface and contains the real business code.
...
0
votes
2answers
112 views
unable to return to main() from a method reading standard input stream
I am basically trying to return from a method which reads user input from the standard input stream. Since the user has the option to quit the application, I am trying to figure out the best way to do ...