]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics/src/org/simantics/internal/startup/StartupExtension.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics / src / org / simantics / internal / startup / StartupExtension.java
1 /*******************************************************************************
2  * Copyright (c) 2015 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     Semantum Oy - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.internal.startup;
13
14 import org.eclipse.core.runtime.CoreException;
15 import org.eclipse.core.runtime.IConfigurationElement;
16 import org.simantics.startup.IStartup;
17
18 /**
19  * @author Tuukka Lehtonen
20  */
21 public class StartupExtension {
22
23     public static final String CLASS = "class";
24
25     // For access to createExecutableExtension(String).
26     private final IConfigurationElement configurationElement;
27
28     public StartupExtension(IConfigurationElement ce) {
29         this.configurationElement = ce;
30     }
31
32     public String getClassName() {
33         return configurationElement.getAttribute(CLASS);
34     }
35
36     public IStartup newInstance() throws CoreException {
37         return (IStartup) configurationElement.createExecutableExtension(CLASS);
38     }
39
40     @Override
41     public String toString() {
42         return super.toString() + " [contributor=" + configurationElement.getContributor().getName() + "]";
43     }
44
45 }