📄 tablereadlistener.java
字号:
package prefuse.data.io;
import prefuse.data.parser.DataParseException;
/**
* Callback interface used by AbstractTextTableReader instances to be
* used when a table value is encountered in parsing.
*
* @author <a href="http://jheer.org">jeffrey heer</a>
*/
public interface TableReadListener {
/**
* Notification that a text string representing a table value has
* been read. It is the job of this callback to then appropriately
* take action, such as parse and store the value.
* @param line the line of the file at which the value was encountered
* @param col the table column index at which the value was encountered
* @param value the text string representing the data value
* @throws DataParseException if an error occurs while parsing the data
*/
public void readValue(int line, int col, String value)
throws DataParseException;
} // end of interface TableReadListener
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -