View Javadoc

1   package org.ximtec.igesture.tool.explorer;
2   
3   import java.awt.event.ActionEvent;
4   
5   import org.sigtec.graphix.widget.BasicAction;
6   
7   /**
8    * This is a dummy action and is replaced in NodeInfoImpl with a separator.
9    * 
10   * @author Ueli Kurmann
11   * 
12   */
13  public class SeparatorAction extends BasicAction {
14  
15    @Override
16    public void actionPerformed(ActionEvent arg0) {
17      throw new RuntimeException("do not use this action.");
18    }
19  
20  }