All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.celldynamics.quimp.plugin.protanalysis.ActionNotSupported Maven / Gradle / Ivy

Go to download

QuimP software, a set of plugins for ImageJ to quantify spatio-temporal patterns of fluorescently labeled proteins in the cortex of moving cells.

The newest version!
package com.github.celldynamics.quimp.plugin.protanalysis;

import java.awt.event.ActionEvent;

@Deprecated
public class ActionNotSupported extends ProtAnalysisAbstractAction {

  private String name;

  /**
   * Create action not related to UI element.
   * 
   * @param ui window reference
   */
  public ActionNotSupported(ProtAnalysisUi ui) {
    super(ui);
  }

  /**
   * Action creator.
   * 
   * @param name name
   * @param desc description
   * @param ui reference to outer class.
   */
  public ActionNotSupported(String name, String desc, ProtAnalysisUi ui) {
    super(name, desc, ui);
    this.name = name;
  }

  @Override
  public void actionPerformed(ActionEvent e) {
    logger.warn(name + " Not implemented yet");
    // throw new NotImplementedException("Not implemented yet");

  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy