com.mxgraph.swing.view.mxICellEditor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of AptSpringProcessor Show documentation
Show all versions of AptSpringProcessor Show documentation
This project contains the apt processor that implements all the checks enumerated in @Verify. It is a self contained, and
shaded jar.
The newest version!
/**
* Copyright (c) 2008, Gaudenz Alder
*/
package com.mxgraph.swing.view;
import java.util.EventObject;
/**
*
*/
public interface mxICellEditor
{
/**
* Returns the cell that is currently being edited.
*/
public Object getEditingCell();
/**
* Starts editing the given cell.
*/
public void startEditing(Object cell, EventObject trigger);
/**
* Stops the current editing.
*/
public void stopEditing(boolean cancel);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy