Examples of addPlugin()


Examples of org.jboss.forge.maven.projects.MavenPluginFacet.addPlugin()

                                 .addGoal("jar")
                                 .setConfig(
                                          ConfigurationBuilder.create().addConfigurationElement(
                                                   ConfigurationElementBuilder.create().setName("classifier")
                                                            .setText("forge-addon"))));
      pluginFacet.addPlugin(plugin);
      return true;
   }

   @Override
   public boolean isInstalled()
View Full Code Here

Examples of org.jboss.scanning.plugins.DefaultScanner.addPlugin()

            public ResourceFilter getRecurseFilter()
            {
               return recurseFilter;
            }
         };
         scanner.addPlugin(plugin);
         scanner.setIncluded(included);
         scanner.setExcluded(excluded);

         scanner.scan();
View Full Code Here

Examples of org.jboss.scanning.plugins.DeploymentUnitScanner.addPlugin()

   {
      try
      {
         AbstractScanner scanner = new DeploymentUnitScanner(unit);
         AnnotationsScanningPlugin plugin = new AnnotationsScanningPlugin(unit.getClassLoader());
         scanner.addPlugin(plugin);

         scanner.scan();

         AnnotationRepository repository = unit.getAttachment(plugin.getAttachmentKey(), AnnotationRepository.class);
         unit.addAttachment(AnnotationRepository.class, repository);
View Full Code Here

Examples of org.jboss.scanning.spi.helpers.AbstractScanner.addPlugin()

   {
      try
      {
         AbstractScanner scanner = new DeploymentUnitScanner(unit);
         AnnotationsScanningPlugin plugin = new AnnotationsScanningPlugin(unit.getClassLoader());
         scanner.addPlugin(plugin);

         scanner.scan();

         AnnotationRepository repository = unit.getAttachment(plugin.getAttachmentKey(), AnnotationRepository.class);
         unit.addAttachment(AnnotationRepository.class, repository);
View Full Code Here

Examples of org.jwebsocket.plugins.TokenPlugInChain.addPlugIn()

      // add desired plug-ins
      TokenPlugInChain lPlugInChain = mServer.getPlugInChain();
      // the system plug-in is essential to process authentication
      // send and broadcast
      lPlugInChain.addPlugIn(new SystemPlugIn());
      // the FlashBrigde plug-in is strongly recommended to also support
      // non websocket compliant browsers
      lPlugInChain.addPlugIn(new FlashBridgePlugIn());

    }
View Full Code Here

Examples of org.neuroph.core.NeuralNetwork.addPlugin()

     * @param transferFunctionType neurons transfer function type
     * @return returns NeuralNetwork with the OCR plugin
     */
    public static NeuralNetwork createNewNeuralNetwork(String label, Dimension samplingResolution, ColorMode colorMode, List<String> characterLabels,  List<Integer> layersNeuronsCount, TransferFunctionType transferFunctionType) {
        NeuralNetwork neuralNetwork = ImageRecognitionHelper.createNewNeuralNetwork(label, samplingResolution, colorMode, characterLabels, layersNeuronsCount, transferFunctionType);
        neuralNetwork.addPlugin(new OcrPlugin(samplingResolution, colorMode));

        return neuralNetwork;
    }
}
View Full Code Here

Examples of org.neuroph.core.NeuralNetwork.addPlugin()

   
    NeuralNetwork neuralNetwork = new MultiLayerPerceptron(layersNeuronsCount, transferFunctionType);

    neuralNetwork.setLabel(label);
    PluginBase imageRecognitionPlugin = new ImageRecognitionPlugin(samplingResolution, colorMode);
    neuralNetwork.addPlugin(imageRecognitionPlugin);

    assignLabelsToOutputNeurons(neuralNetwork, imageLabels);
                neuralNetwork.setLearningRule(new MomentumBackpropagation());

            return neuralNetwork;
View Full Code Here

Examples of org.neuroph.nnet.MultiLayerPerceptron.addPlugin()

   
    NeuralNetwork neuralNetwork = new MultiLayerPerceptron(layersNeuronsCount, transferFunctionType);

    neuralNetwork.setLabel(label);
    PluginBase imageRecognitionPlugin = new ImageRecognitionPlugin(samplingResolution, colorMode);
    neuralNetwork.addPlugin(imageRecognitionPlugin);

    assignLabelsToOutputNeurons(neuralNetwork, imageLabels);
                neuralNetwork.setLearningRule(new MomentumBackpropagation());

            return neuralNetwork;
View Full Code Here

Examples of org.openbp.jaspira.gui.plugin.PluginDivider.addPlugin()

    PluginDivider right = new PluginDivider(PluginDivider.VERTICAL_SPLIT);

    left.addPlugin(socketToolBox);
    left.addPlugin(itemBrowser);

    right.addPlugin(nodeEditor);

    TabbedPluginContainer bottomContainer = new TabbedPluginContainer();
    bottomContainer.addPlugin(propertyBrowser);
    bottomContainer.addPlugin(colorChooser);
    right.addClient(bottomContainer);
View Full Code Here

Examples of org.openbp.jaspira.gui.plugin.TabbedPluginContainer.addPlugin()

  {
    PluginMgr pm = PluginMgr.getInstance();

    // Create the toolbox container
    TabbedPluginContainer toolContainer = new TabbedPluginContainer();
    toolContainer.addPlugin(pm.createVisibleInstance(StandardToolBoxPlugin.class, this), true);

    // toolContainer.addPlugin (pm.createVisibleInstance (UserToolBoxPlugin.class, this), false);

    toolContainer.addPlugin(pm.createVisibleInstance(MiniViewPlugin.class, this), false);
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.