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

}
