1 7 package org.eclipse.emf.ecore.presentation; 8 9 10 import org.eclipse.emf.common.EMFPlugin; 11 import org.eclipse.emf.common.util.ResourceLocator; 12 13 14 20 public final class EcoreEditorPlugin extends EMFPlugin 21 { 22 28 public static final EcoreEditorPlugin INSTANCE = new EcoreEditorPlugin(); 29 30 36 private static Implementation plugin; 37 38 44 public EcoreEditorPlugin() 45 { 46 super 47 (new ResourceLocator [] 48 { 49 }); 50 } 51 52 59 public ResourceLocator getPluginResourceLocator() 60 { 61 return plugin; 62 } 63 64 71 public static Implementation getPlugin() 72 { 73 return plugin; 74 } 75 76 82 public static class Implementation extends EclipsePlugin 83 { 84 90 public Implementation() 91 { 92 super(); 93 94 plugin = this; 97 } 98 } 99 } 100 | Popular Tags |