Examples of reload()


Examples of org.molgenis.framework.ui.ApplicationController.reload()

          EasyPluginController.HTML_WAS_ALREADY_SERVED = null;
          return;
        }

        // handle request by reloading (...)
        appController.reload(db);

        // session are automatically synchronized...
        session.setAttribute("application", appController);

        // prepare the response
View Full Code Here

Examples of org.nasutekds.server.replication.common.ServerState.reload()

    ServerState state1 = new ServerState();
    state1.update(cn1);
    state1.update(cn3);

    ServerState state2 = new ServerState();
    state2.reload(state1);

    assertEquals(state1.toString(), state2.toString()) ;

  }
View Full Code Here

Examples of org.openbp.cockpit.plugins.finder.treemodel.GenericModel.reload()

  public static void show(int height, int level, long time, boolean intelli)
  {
    Strategy strategy = new RefStrategy();
    GenericModel model = new GenericModel(strategy, true);
    model.reload(data);

    JFrame dialog = new TestExpander();
    JTree tree = new JTree();
    tree.setModel(model);
    dialog.getContentPane().add(new JScrollPane(tree));
View Full Code Here

Examples of org.openiaml.model.tests.CachedModelLoader.IModelReloader.reload()

            throw new InferenceException(e);
          }
        }
      };
     
      InternetApplication root = (InternetApplication) reloader.reload();
     
      infer(root, false, reloader);
    }
   
  }
View Full Code Here

Examples of org.openrdf.sail.rdbms.schema.TripleTable.reload()

        table.setPredColumnPresent(true);
      }
      if (indexingTriples && !table.isIndexed()) {
        table.createIndex();
      }
      table.reload();
      tables.put(key(tableName), table);
    }
    return tables;
  }
View Full Code Here

Examples of org.opentripplanner.routing.services.GraphSource.reload()

        boolean allSucceeded = true;
        synchronized (graphSources) {
            Collection<String> routerIds = getRouterIds();
            for (String routerId : routerIds) {
                GraphSource graphSource = graphSources.get(routerId);
                boolean success = graphSource.reload(true, preEvict);
                if (!success) {
                    evictGraph(routerId);
                }
                allSucceeded &= success;
            }
View Full Code Here

Examples of org.pentaho.platform.api.engine.IPluginManager.reload()

      // we cannot continue without the PluginSettings
      Logger.error( getClass().toString(), Messages.getInstance().getErrorString(
          "PluginAdapter.ERROR_0001_PLUGIN_MANAGER_NOT_CONFIGURED" ) ); //$NON-NLS-1$
      return false;
    }
    pluginManager.reload();
    return true;
  }

  public void shutdown() {
    IPluginManager pluginManager = PentahoSystem.get( IPluginManager.class, null );
View Full Code Here

Examples of org.rhq.common.jbossas.client.controller.CoreJBossASClient.reload()

        log("Will now ask the app server to reload its configuration");
        ModelControllerClient mcc = null;
        try {
            mcc = createModelControllerClient();
            final CoreJBossASClient client = new CoreJBossASClient(mcc);
            client.reload();
            log("App server has been successfully asked to reload its configuration");
        } catch (Exception e) {
            log("reloadConfiguration failed - restart the server to complete the installation", e);
        } finally {
            MCCHelper.safeClose(mcc);
View Full Code Here

Examples of org.rssowl.core.connection.IConnectionService.reload()

    URL pluginLocation = FileLocator.toFileURL(Platform.getBundle("org.rssowl.core.tests").getEntry("/"));
    IConnectionService conManager = Owl.getConnectionService();
    URL feedUrl = pluginLocation.toURI().resolve("data/interpreter/feed_rss.xml").toURL();
    IFeed feed = new Feed(feedUrl.toURI());

    Pair<IFeed, IConditionalGet> result = conManager.reload(feed.getLink(), null, null);

    assertEquals("RSS 2.0", result.getFirst().getFormat());
  }

  /**
 
View Full Code Here

Examples of org.rssowl.core.connection.IProtocolHandler.reload()

    if (monitor == null)
      monitor = new NullProgressMonitor();

    /* Handler present */
    if (handler != null)
      return handler.reload(link, monitor, properties);

    /* No Handler present */
    throw new UnknownFeedException(Activator.getDefault().createErrorStatus("Could not find a matching ProtocolHandler for: " + protocol, null)); //$NON-NLS-1$
  }

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.