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

org.swrlapi.ui.action.EnableAllRulesAction Maven / Gradle / Ivy

There is a newer version: 2.1.2
Show newest version
package org.swrlapi.ui.action;

import org.checkerframework.checker.nullness.qual.NonNull;

import javax.swing.*;
import java.awt.event.ActionEvent;

public class EnableAllRulesAction extends AbstractAction
{
  private static final long serialVersionUID = 1L;

  private static final String HELP_TEXT = "Enable all rules";

  public EnableAllRulesAction()
  {
    super(HELP_TEXT);
  }

  @Override public void actionPerformed(@NonNull ActionEvent e)
  {
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy