/****************************************************************************** * Copyright (c) 2016 Oracle * 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: * Konstantin Komissarchik - initial implementation and ongoing maintenance * Gregory Amerson - [444202] Lazy loading of editor pages ******************************************************************************/ package org.eclipse.sapphire.samples.uml; import org.eclipse.sapphire.Element; import org.eclipse.sapphire.modeling.xml.RootXmlResource; import org.eclipse.sapphire.ui.SapphireEditor; import org.eclipse.sapphire.ui.swt.xml.editor.XmlEditorResourceStore; import org.eclipse.ui.PartInitException; import org.eclipse.wst.sse.ui.StructuredTextEditor; /** * @author <a href="mailto:konstantin.komissarchik@oracle.com">Konstantin Komissarchik</a> * @author <a href="mailto:gregory.amerson@liferay.com">Gregory Amerson</a> */ public class SystemStructureEditor extends SapphireEditor { private StructuredTextEditor sourceEditorPage; @Override protected void createEditorPages() throws PartInitException { addDeferredPage( "Diagram", "DiagramPage" ); this.sourceEditorPage = new StructuredTextEditor(); this.sourceEditorPage.setEditorPart( this ); int index = addPage( this.sourceEditorPage, getEditorInput() ); setPageText( index, "Source" ); } @Override protected Element createModel() { return System.TYPE.instantiate( new RootXmlResource( new XmlEditorResourceStore( this, this.sourceEditorPage ) ) ); } }