Examples of ObservationSourcePluginBase


Examples of org.aavso.tools.vstar.plugin.ObservationSourcePluginBase

   * @param isAdditive
   *            Is this load additive?
   */
  private void commonLoadFromFilePlugin(final String pluginPattern,
      InputType inputType, final String location, boolean isAdditive) {
    ObservationSourcePluginBase obSourcePlugin = null;

    for (ObservationSourcePluginBase plugin : PluginLoader
        .getObservationSourcePlugins()) {
      if (plugin.getDisplayName().matches("^.*" + pluginPattern + ".*$")
          && plugin.getInputType() == inputType) {
View Full Code Here

Examples of org.aavso.tools.vstar.plugin.ObservationSourcePluginBase

   */
  public ActionListener createObservationSourceListener() {
    return new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        String item = e.getActionCommand();
        ObservationSourcePluginBase plugin = menuItemNameToObSourcePlugin
            .get(item);
        mediator.createObservationArtefactsFromObSourcePlugin(plugin);
      }
    };
  }
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.