1 17 package org.eclipse.emf.ecore.provider; 18 19 20 import org.eclipse.emf.common.EMFPlugin; 21 import org.eclipse.emf.common.util.ResourceLocator; 22 23 24 30 public final class EcoreEditPlugin extends EMFPlugin 31 { 32 38 public static final EcoreEditPlugin INSTANCE = new EcoreEditPlugin(); 39 40 46 private static Implementation plugin; 47 48 54 public EcoreEditPlugin() 55 { 56 super 57 (new ResourceLocator [] 58 { 59 }); 60 } 61 62 69 public ResourceLocator getPluginResourceLocator() 70 { 71 return plugin; 72 } 73 74 81 public static Implementation getPlugin() 82 { 83 return plugin; 84 } 85 86 92 public static class Implementation extends EclipsePlugin 93 { 94 100 public Implementation() 101 { 102 super(); 103 104 plugin = this; 107 } 108 } 109 } 110 | Popular Tags |