2015-08-18 21:51:04 +03:00

16 lines
239 B
Java

package com.iluwatar.callback;
/**
*
* Implementation of task that need to be executed
*
*/
public class SimpleTask extends Task {
@Override
public void execute() {
System.out.println("Perform some important activity.");
}
}