mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-14 18:58:44 +00:00
14 lines
222 B
Java
14 lines
222 B
Java
package com.iluwatar;
|
|
|
|
/**
|
|
* Implementation of task that need to be executed
|
|
*/
|
|
public class SimpleTask extends Task {
|
|
|
|
@Override
|
|
public void execute() {
|
|
System.out.println("Perform some important activity.");
|
|
}
|
|
|
|
}
|