/**
 * Derive the separate implementations from the common abstraction
 */
public class YelloImplementor extends ColorImplementor {
    public void fillColor(){
        System.out.println("Yellow");
    }

}
