Package at.bestsolution.efxclipse.tooling.modeleditor.app

Source Code of at.bestsolution.efxclipse.tooling.modeleditor.app.Application

/*******************************************************************************
* Copyright (c) 2012 BestSolution.at and others.
* 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
*
* Contributors:
*     Tom Schindl<tom.schindl@bestsolution.at> - initial API and implementation
*******************************************************************************/
package at.bestsolution.efxclipse.tooling.modeleditor.app;

import java.io.File;

import javafx.scene.Scene;
import javafx.scene.layout.BorderPane;
import javafx.stage.Stage;

import javax.annotation.PostConstruct;

import org.eclipse.e4.core.contexts.ContextInjectionFactory;
import org.eclipse.e4.core.contexts.IEclipseContext;
import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.ecore.resource.Resource;
import org.eclipse.emf.ecore.resource.ResourceSet;
import org.eclipse.emf.ecore.resource.impl.ResourceSetImpl;

import at.bestsolution.efxclipse.tooling.modeleditor.ModelEditor;


@SuppressWarnings("restriction")
public class Application {

  @PostConstruct
  void init(Stage primaryStage, IEclipseContext context) {
    ResourceSet resourceSet = new ResourceSetImpl();

    File file = new File("/Users/tomschindl/git/e-fx-clipse/at.bestsolution.efxclipse.testcases.e4/Application.e4xmi");
    URI uri = URI.createFileURI(file.getAbsolutePath());
    Resource resource = resourceSet.getResource(uri, true);

    IEclipseContext appContext = context.createChild();
    appContext.set("rootElement", resource.getContents().get(0));
   
    BorderPane p = new BorderPane();
    appContext.set(BorderPane.class, p);
   
    ContextInjectionFactory.make(ModelEditor.class, appContext);

    Scene s = new Scene(p);
    primaryStage.setScene(s);
    primaryStage.setWidth(640);
    primaryStage.setHeight(480);
    primaryStage.show();

    primaryStage.setTitle("Hello JavaFX");
    primaryStage.setWidth(800);
    primaryStage.setHeight(600);
    primaryStage.show()
  }
}
TOP

Related Classes of at.bestsolution.efxclipse.tooling.modeleditor.app.Application

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.