Codota Logo
ISettingsService.registerPropertiesProvider
Code IndexAdd Codota to your IDE (free)

How to use
registerPropertiesProvider
method
in
jadex.bridge.service.types.settings.ISettingsService

Best Java code snippets using jadex.bridge.service.types.settings.ISettingsService.registerPropertiesProvider (Showing top 6 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
DateTime d =
  • Codota Iconnew DateTime()
  • Codota IconDateTimeFormatter formatter;String text;formatter.parseDateTime(text)
  • Codota IconObject instant;new DateTime(instant)
  • Smart code suggestions by Codota
}
origin: net.sourceforge.jadex/jadex-platform

public void resultAvailable(ISettingsService settings)
{
  settings.registerPropertiesProvider(getAgentName(), AwarenessManagementAgent.this)
    .addResultListener(new DelegationResultListener<Void>(ret)
  {
    public void customResultAvailable(Void result)
    {
      proceed();
    }
  });
}
 
origin: net.sourceforge.jadex/jadex-platform

public void resultAvailable(Object result)
{
  ISettingsService    settings    = (ISettingsService)result;
  settings.registerPropertiesProvider("simulationservice", SimulationService.this)
    .addResultListener(access.createResultListener(new DelegationResultListener(ret)
  {
    public void customResultAvailable(Object result)
    {
      proceed();
    }
    public void exceptionOccurred(Exception exception)
    {
      super.exceptionOccurred(exception);
    }
  }));
}
 
origin: org.activecomponents.jadex/jadex-platform

public void resultAvailable(Object result)
{
  ISettingsService    settings    = (ISettingsService)result;
  settings.registerPropertiesProvider("simulationservice", SimulationService.this)
    .addResultListener(access.getComponentFeature(IExecutionFeature.class).createResultListener(new DelegationResultListener(ret)
  {
    public void customResultAvailable(Object result)
    {
      proceed();
    }
    public void exceptionOccurred(Exception exception)
    {
      super.exceptionOccurred(exception);
    }
  }));
}
 
origin: net.sourceforge.jadex/jadex-platform-base

        public void resultAvailable(ISettingsService settings)
        {
          settings.registerPropertiesProvider(agent.getComponentIdentifier().getLocalName(), pp)
            .addResultListener(new DelegationResultListener<Void>(ret)
          {
            public void customResultAvailable(Void result)
            {
//                            pp.isCalled().addResultListener(new DelegationResultListener<Void>(ret)
//                            {
//                                public void customResultAvailable(Void result)
//                                {
                  proceed();
//                                }
//                            });
            }
          });
        }
         
origin: net.sourceforge.jadex/jadex-platform

    public void resultAvailable(ISettingsService settings)
    {
      if(!(agent.getArguments().get("nosave") instanceof Boolean) || !((Boolean)agent.getArguments().get("nosave")).booleanValue())
      {
        settings.registerPropertiesProvider(getSubname(), pp)
          .addResultListener(new DelegationResultListener<Void>(ret)
        {
          public void customResultAvailable(Void result)
          {
//							pp.isCalled().addResultListener(new DelegationResultListener<Void>(ret)
//							{
//								public void customResultAvailable(Void result)
//								{
                proceed();
//								}
//							});
          }
        });
      }
      else
      {
        proceed();
      }
    }
     
origin: org.activecomponents.jadex/jadex-platform

    public void resultAvailable(ISettingsService settings)
    {
      if(!(agent.getComponentFeature(IArgumentsResultsFeature.class).getArguments().get("nosave") instanceof Boolean)
        || !((Boolean)agent.getComponentFeature(IArgumentsResultsFeature.class).getArguments().get("nosave")).booleanValue())
      {
        settings.registerPropertiesProvider(getSubname(), pp)
          .addResultListener(new DelegationResultListener<Void>(ret)
        {
          public void customResultAvailable(Void result)
          {
//							pp.isCalled().addResultListener(new DelegationResultListener<Void>(ret)
//							{
//								public void customResultAvailable(Void result)
//								{
                proceed();
//								}
//							});
          }
        });
      }
      else
      {
        proceed();
      }
    }
     
jadex.bridge.service.types.settingsISettingsServiceregisterPropertiesProvider

Javadoc

Register a property provider. Settings of registered property providers will be automatically saved and restored, when properties are loaded.

Popular methods of ISettingsService

  • deregisterPropertiesProvider
    Deregister a property provider. Settings of a deregistered property provider will be saved before th
  • getProperties
    Get the properties for a given id.

Popular in Java

  • Start an intent from android
  • findViewById (Activity)
  • scheduleAtFixedRate (ScheduledExecutorService)
    Creates and executes a periodic action that becomes enabled first after the given initial delay, and
  • getResourceAsStream (ClassLoader)
    Returns a stream for the resource with the specified name. See #getResource(String) for a descriptio
  • Enumeration (java.util)
    A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
  • LinkedHashMap (java.util)
    Hash table and linked list implementation of the Map interface, with predictable iteration order. Th
  • Locale (java.util)
    A Locale object represents a specific geographical, political, or cultural region. An operation that
  • TreeMap (java.util)
    A Red-Black tree based NavigableMap implementation. The map is sorted according to the Comparable of
  • Pattern (java.util.regex)
    A compiled representation of a regular expression. A regular expression, specified as a string, must
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now