Examples of createConfiguration()


Examples of com.dci.intellij.dbn.debugger.execution.DBProgramRunConfigurationFactory.createConfiguration()

        }

        // check whether a configuration already exists for the given method
        if (runConfigurationSetting == null) {
            DBProgramRunConfigurationFactory configurationFactory = configurationType.getConfigurationFactory();
            DBProgramRunConfiguration runConfiguration = configurationFactory.createConfiguration(method);
            runConfigurationSetting = runManager.createConfiguration(runConfiguration, configurationFactory);
            runManager.addConfiguration(runConfigurationSetting, false);
            runManager.setTemporaryConfiguration(runConfigurationSetting);

        }
View Full Code Here

Examples of com.eviware.soapui.impl.wsdl.teststeps.assertions.basic.XPathContainsAssertion.createConfiguration()

    XPathContainsAssertion assertion = new XPathContainsAssertion( config, null );

    assertEquals( "testPath", assertion.getPath() );
    assertEquals( "testContent", assertion.getExpectedContent() );

    XmlObject conf = assertion.createConfiguration();
    String str = conf.xmlText();
  }

  public void testFullContentMatch() throws Exception
  {
View Full Code Here

Examples of com.github.maven_nar.cpptasks.CompilerDef.createConfiguration()

    setCompilerName(extendedCompiler, "msvc");
    CCTask cctask = new CCTask();
    LinkType linkType = new LinkType();
    linkType.setStaticRuntime(true);
    CommandLineCompilerConfiguration config = (CommandLineCompilerConfiguration)
        extendedCompiler
        .createConfiguration(cctask, linkType, null, null, null);
    String[] preArgs = config.getPreArguments();
    assertEquals("/ML", preArgs[3]);
  }
View Full Code Here

Examples of com.github.maven_nar.cpptasks.compiler.Processor.createConfiguration()

                    "ProcessorDef")).createConfiguration(task, linkType,
                    baseDef, targetPlatform, versionInfo);
        }
        ProcessorDef[] defaultProviders = getDefaultProviders(baseDef);
        Processor proc = getProcessor(linkType);
        return proc.createConfiguration(task, linkType, defaultProviders, this, targetPlatform, versionInfo);
    }
    /**
     * Prepares list of processor arguments ( compilerarg, linkerarg ) that
     * are active for the current project settings.
     *
 
View Full Code Here

Examples of com.google.gwt.dev.cfg.Properties.createConfiguration()

    BindingProperty flavorProperty = properties.createBinding("flavor");
    flavorProperty.setProvider(new PropertyProvider("return window.properties.flavor;"));
    flavorProperty.addTargetLibraryDefinedValue(flavorProperty.getRootCondition(), "Vanilla");
    flavorProperty.addTargetLibraryDefinedValue(flavorProperty.getRootCondition(), "Chocolate");
    ConfigurationProperty emulateStackProperty =
        properties.createConfiguration("emulateStack", false);
    emulateStackProperty.setValue("TRUE");
    compiler.jprogram = new JProgram(new MinimalRebuildCache());

    // Builds property provider classes and a property provider registrator to register them.
    precompiler.buildPropertyProviderRegistrator(allRootTypes,
View Full Code Here

Examples of com.intellij.execution.RunManager.createConfiguration()

            configuration.autoStartGdb = true;
            configuration.GDB_PATH = "gdb";
            configuration.debugBuilderArguments = "-gcflags \"-N -l\"";
            configuration.setModule(module);
            configuration.setName(configName);
            RunnerAndConfigurationSettings runAndConfig = runManager.createConfiguration(configuration, goConfigFactory);
            runManager.addConfiguration(runAndConfig, false);
            runManager.setSelectedConfiguration(runAndConfig);

            toolWindow.showAndCreate(module.getProject());
View Full Code Here

Examples of com.intellij.execution.RunManagerEx.createConfiguration()

        // check whether a configuration already exists for the given method
        if (runConfigurationSetting == null) {
            DBProgramRunConfigurationFactory configurationFactory = configurationType.getConfigurationFactory();
            DBProgramRunConfiguration runConfiguration = configurationFactory.createConfiguration(method);
            runConfigurationSetting = runManager.createConfiguration(runConfiguration, configurationFactory);
            runManager.addConfiguration(runConfigurationSetting, false);
            runManager.setTemporaryConfiguration(runConfigurationSetting);

        }
View Full Code Here

Examples of com.volantis.mcs.protocols.builder.extractor.ExtractorConfigurator.createConfiguration()

            }
        }

        ExtractorConfigurator configurator = new ExtractorConfigurator();
        ExtractorConfiguration extractor =
                configurator.createConfiguration(device,
                        configuration.getCssVersion());
        config.setExtractorConfiguration(extractor);

        // CSS media
        String media = device.getPolicyValue(DevicePolicyConstants.CSS_MEDIA_SUPPORTED);
View Full Code Here

Examples of com.wordpress.salaboy.smarttasks.formbuilder.configuration.BuilderConfigurationProvider.createConfiguration()

                root, contexts);
        configurationProvider
                .addUIHelperConfigurationUriHandler(new JBPM5ConfigurationHandler());
        configurationProvider
                .addUIHelperConfigurationUriHandler(new ActivitiConfigurationHandler());
        BuilderConfiguration config = configurationProvider
                .createConfiguration();
        helper = new SmartTaskBuilder(config);

    }
View Full Code Here

Examples of com.xmlcalabash.util.UserArgs.createConfiguration()

            System.err.println(xe.getMessage());
            usage();
        }

        try {
            XProcConfiguration config = userArgs.createConfiguration();

            if (run(userArgs, config)) {
                // It's just sooo much nicer if there's a newline at the end.
                System.out.println();
            }
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.