org.swrlapi.ui.action.EnableAllRulesAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swrlapi Show documentation
Show all versions of swrlapi Show documentation
Java API for working with SWRL rules and SQWRL queries
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