com.ecfeed.ui.handlers.AboutHandler.java Source code

Java tutorial

Introduction

Here is the source code for com.ecfeed.ui.handlers.AboutHandler.java

Source

/*******************************************************************************
 *
 * Copyright (c) 2016 ecFeed AS.                                                
 * All rights reserved. This program and the accompanying materials              
 * are made available under the terms of the Eclipse Public License v1.0         
 * which accompanies this distribution, and is available at                      
 * http://www.eclipse.org/legal/epl-v10.html 
 *  
 *******************************************************************************/

package com.ecfeed.ui.handlers;

import org.eclipse.jface.dialogs.MessageDialog;

import com.ecfeed.utils.EclipseHelper;

public class AboutHandler {

    public static void execute() {
        MessageDialog.openInformation(EclipseHelper.getActiveShell(), "About ecFeed",
                "EcFeed is a tool that allows to design, model and execute tests for Java, Android and Web projects.\n"
                        + "\n" + "Copyright (c) 2016 ecFeed AS.\n" + "\n" + "https://github.com/ecfeed/wiki");
    }
}