/** Flyweight class -- an abstraction for any intrinsic information
 *  that a set of objects would have in common.
 */
public abstract FlyweightBar {

  public abstract void printBar();

}