Package com.confluenity.jaylen.actions

Source Code of com.confluenity.jaylen.actions.AboutAction

/*
* 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();
  }
}
TOP

Related Classes of com.confluenity.jaylen.actions.AboutAction

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.