Java 类org.eclipse.xtext.testing.InjectWith 实例源码

项目:solidity-ide    文件:InjectorProviders.java   
public static IInjectorProvider getOrCreateInjectorProvider(ExtensionContext context) {
    InjectWith injectWith = context.getRequiredTestClass().getAnnotation(InjectWith.class);
    if (injectWith != null) {
        Class<? extends IInjectorProvider> klass = injectWith.value();
        IInjectorProvider injectorProvider = injectorProviderClassCache.get(klass);
        if (injectorProvider == null) {
            try {
                injectorProvider = klass.newInstance();
                injectorProviderClassCache.put(klass, injectorProvider);
            } catch (Exception e) {
                throwUncheckedException(e);
            }
        }
        return injectorProvider;
    }
    return null;
}
项目:xtext-core    文件:InjectorProviders.java   
public static IInjectorProvider getOrCreateInjectorProvider(TestClass testClass) {
    InjectWith injectWith = testClass.getJavaClass().getAnnotation(InjectWith.class);
    if (injectWith != null) {
        Class<? extends IInjectorProvider> klass = injectWith.value();
        IInjectorProvider injectorProvider = injectorProviderClassCache.get(klass);
        if (injectorProvider == null) {
            try {
                injectorProvider = klass.newInstance();
                injectorProviderClassCache.put(klass, injectorProvider);
            } catch (Exception e) {
                throwUncheckedException(e);
            }
        }
        return injectorProvider;
    }
    return null;
}
项目:solidity-ide    文件:InjectorProviders.java   
public static IInjectorProvider getInjectorProvider(ExtensionContext context) {
    InjectWith injectWith = context.getRequiredTestClass().getAnnotation(InjectWith.class);
    if (injectWith != null) {
        return injectorProviderClassCache.get(injectWith.value());
    }
    return null;
}
项目:solidity-ide    文件:InjectorProviders.java   
public static IInjectorProvider createInjectorProvider(ExtensionContext context) {
    InjectWith injectWith = context.getRequiredTestClass().getAnnotation(InjectWith.class);
    if (injectWith != null) {
        try {
            return injectWith.value().newInstance();
        } catch (Exception e) {
            throwUncheckedException(e);
        }
    }
    return null;
}
项目:xtext-core    文件:InjectorProviders.java   
public static IInjectorProvider getInjectorProvider(TestClass testClass) {
    InjectWith injectWith = testClass.getJavaClass().getAnnotation(InjectWith.class);
    if (injectWith != null) {
        return injectorProviderClassCache.get(injectWith.value());
    }
    return null;
}
项目:xtext-core    文件:InjectorProviders.java   
public static IInjectorProvider createInjectorProvider(TestClass testClass) {
    InjectWith injectWith = testClass.getJavaClass().getAnnotation(InjectWith.class);
    if (injectWith != null) {
        try {
            return injectWith.value().newInstance();
        } catch (Exception e) {
            throwUncheckedException(e);
        }
    }
    return null;
}