Examples of use()


Examples of org.jooq.impl.Factory.use()

                log.info("SKIPPING", "USE test");
                return;
        }

        Factory factory = create();
        factory.use(schema().getName());

        Result<?> result =
        factory.select(TBook_AUTHOR_ID(), count())
               .from(TBook())
               .join(TAuthor())
View Full Code Here

Examples of org.qi4j.runtime.composite.UsesInstance.use()

                ModuleInstance moduleInstance = context.module();

                try
                {
                    if (context.instance() != null)
                        uses = uses.use( context.instance() );
                    usesObject = moduleInstance.newTransient( injectionType, uses.toArray() );
                } catch( NoSuchCompositeException e )
                {
                    try
                    {
View Full Code Here

Examples of org.teavm.dependency.MethodDependency.use()

    @Override
    public void methodAchieved(DependencyAgent agent, MethodDependency method) {
        switch (method.getReference().getName()) {
            case "scheduleOnce": {
                MethodDependency performMethod = agent.linkMethod(performOnceRef, method.getStack());
                performMethod.use();
                method.getVariable(1).connect(performMethod.getVariable(1));
                break;
            }
        }
    }
View Full Code Here

Examples of org.zanata.seam.SeamAutowire.use()

    @Override
    protected void prepareResources() {
        MockitoAnnotations.initMocks(this);
        SeamAutowire seamAutowire = getSeamAutowire();
        seamAutowire.use("entityManager", getEm()).use("session", getSession())
                .use("identity", Mockito.mock(ZanataIdentity.class))
                .useImpl(LocaleServiceImpl.class)
                .useImpl(CopyTransServiceImpl.class)
                .useImpl(DocumentServiceImpl.class)
                .useImpl(TranslationServiceImpl.class)
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.