Java / Design Patterns
Explain Command design pattern in Java.
Command Pattern is one of the Behavioral Design Patterns and it is used to implement loose coupling in a request-response model.
java.lang.Runnable interface and Swing Action (javax.swing.Action) implements command design pattern.
More Related questions...