/**
  * Creates a new instance of FakeInputWindow.
  *
  * @param target The message target that output gets sent to
  */
 public FakeWriteableFrameContainer(final MessageTarget target) {
   super(
       target.getIcon(),
       target.getName(),
       target.getTitle(),
       InputWindow.class,
       target.getConfigManager(),
       target.getCommandParser(),
       Collections.<String>emptyList());
   this.target = target;
 }