Project

General

Profile

Download (1 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2007 EDIT
3
* European Distributed Institute of Taxonomy
4
* http://www.e-taxonomy.eu
5
*
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9

    
10
package eu.etaxonomy.taxeditor.workbench;
11

    
12
import java.io.IOException;
13
import java.net.URL;
14

    
15
import org.apache.log4j.Logger;
16
import org.eclipse.e4.core.di.annotations.Execute;
17

    
18
/**
19
 * <p>OpenExternalParserHelpHandler class.</p>
20
 *
21
 * @author p.ciardelli
22
 * @created 04.09.2009
23
 * @version 1.0
24
 */
25
public class OpenExternalParserHelpHandler {
26
	private static final Logger logger = Logger.getLogger(OpenExternalParserHelpHandler.class);
27

    
28
	@Execute
29
	/** {@inheritDoc} */
30
	public Object execute() {
31
		String url = "http://dev.e-taxonomy.eu/trac/wiki/NameParserDocumentation";
32

    
33
		try {
34
            WorkbenchUtility.openWebpage(new URL(url));
35
		} catch (IOException| RuntimeException e) {
36
			logger.error(e);
37
			throw new RuntimeException(e);
38
		}
39

    
40
		return null;
41
	}
42
}
(4-4/8)