AnimationTableEditor.java :  » Graphic-Library » GLIPS-Graffiti-editor-1.5 » fr » itris » glips » rtdaeditor » anim » components » Java Open Source

Java Open Source » Graphic Library » GLIPS Graffiti editor 1.5 
GLIPS Graffiti editor 1.5 » fr » itris » glips » rtdaeditor » anim » components » AnimationTableEditor.java
package fr.itris.glips.rtdaeditor.anim.components;

import javax.swing.*;
import javax.swing.table.*;

/**
 * the super class of the table editors
 * @author ITRIS, Jordi SUC
 */
public abstract class AnimationTableEditor extends AbstractCellEditor implements TableCellEditor{
  
  /**
   * the table
   */
  protected AnimationTable animationTable;
  
  /**
   * the constructor of the class
   * @param animationTable the table
   */
  protected AnimationTableEditor(AnimationTable animationTable) {
    
    this.animationTable=animationTable;
  }
  
  /**
   * stops any cell editing
   */
  public void stopEditingCell() {
    
    fireEditingStopped();
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.