1 17 package org.eclipse.emf.importer; 18 19 import org.eclipse.emf.common.EMFPlugin; 20 import org.eclipse.emf.common.util.ResourceLocator; 21 22 23 27 public final class ImporterPlugin extends EMFPlugin 28 { 29 32 public static final ImporterPlugin INSTANCE = new ImporterPlugin(); 33 34 37 private static Implementation plugin; 38 39 public static final String ID = "org.eclipse.emf.importer"; 40 41 44 private ImporterPlugin() 45 { 46 super 47 (new ResourceLocator [] 48 { 49 50 }); 51 } 52 53 56 public ResourceLocator getPluginResourceLocator() 57 { 58 return plugin; 59 } 60 61 65 public static Implementation getPlugin() 66 { 67 return plugin; 68 } 69 70 73 public static class Implementation extends EMFPlugin.EclipsePlugin 74 { 75 78 public Implementation() 79 { 80 super(); 81 82 plugin = this; 85 } 86 } 87 } 88 | Popular Tags |