001package jmri.jmrit.logixng;
002
003import jmri.JmriException;
004
005/**
006 * A LogixNG digitalaction.
007 * 
008 * @author Daniel Bergqvist Copyright 2018
009 */
010public interface DigitalAction extends Base {
011
012    /**
013     * Execute this DigitalActionBean.
014     * 
015     * @throws JmriException when an exception occurs
016     */
017    void execute() throws JmriException;
018    
019}