1 11 12 package org.eclipse.ui.internal.contexts; 13 14 import org.eclipse.core.commands.contexts.ContextManager; 15 16 24 public final class ContextManagerFactory { 25 26 37 public static final ContextManagerLegacyWrapper getContextManagerWrapper( 38 final ContextManager contextManager) { 39 return new ContextManagerLegacyWrapper(contextManager); 40 } 41 42 45 private ContextManagerFactory() { 46 } 48 } 49 | Popular Tags |