1 17 package org.eclipse.emf.ecore.sdo; 18 19 import org.eclipse.emf.common.EMFPlugin; 20 21 import org.eclipse.emf.common.util.ResourceLocator; 22 23 29 public final class SDOPlugin extends EMFPlugin 30 { 31 37 public static final SDOPlugin INSTANCE = new SDOPlugin(); 38 39 45 private static Implementation plugin; 46 47 53 public SDOPlugin() 54 { 55 super(new ResourceLocator [] {}); 56 } 57 58 65 public ResourceLocator getPluginResourceLocator() 66 { 67 return plugin; 68 } 69 70 77 public static Implementation getPlugin() 78 { 79 return plugin; 80 } 81 82 88 public static class Implementation extends EclipsePlugin 89 { 90 96 public Implementation() 97 { 98 super(); 99 100 plugin = this; 103 } 104 } 105 106 } 107 | Popular Tags |