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