package com.example.datacollect.w9.command; import com.example.datacollect.w9.model.Article; import java.util.List; public interface Command { String getName(); void execute(String[] args, List
articles); }