| CompositeCommand.java |
package lectures.animation.threads_commands.extra;
import util.annotations.WebDocuments;
import lectures.generics_adapters.History;
@WebDocuments({"Lectures/AnimationThreadsCommandsExtra.pptx", "Lectures/AnimationThreadsCommandsExtra.pdf", "Videos/AnimationThreadsCommandsExtra.avi"})
public interface CompositeCommand extends History<Runnable>, Runnable{
}