*/
Form<Object> commentForm = new Form<Object>("commentForm") {
@Override
public boolean isVisible() {
Workspace target = ManageSnapshotsPanel.this.getModelObject();
Action action = new CreateSnapshotAction(Context.ADMINISTRATION, target);
return getBrix().getAuthorizationStrategy().isActionAuthorized(action);
}
};
final TextArea<String> area = new TextArea<String>("area", new Model<String>());