/*
* Copyright (c) 2013-2014. Confluenity
* This content is released under the Apache 2 license:
* http://www.apache.org/licenses/LICENSE-2.0
*/
package com.confluenity.jaylen.actions;
import com.confluenity.jaylen.forms.AboutDialog;
import org.eclipse.swt.events.SelectionEvent;
public class AboutAction extends Action {
@Override
public void widgetSelected(SelectionEvent selectionEvent) {
AboutDialog dialog = springContext.getBean("aboutDialog", AboutDialog.class);
dialog.open();
}
}