return "Replace this " + view.getSpecification().getName() + " view with a " + specification.getName() + " view";
}
@Override
public void execute(final Workspace workspace, final View view, final Location at) {
final View replacement = specification.createView(view.getContent(), new Axes(), -1);
LOG.debug("replacement view " + replacement);
replace(view, replacement);
}