ktablecelldoubleclickadapter.java
来自「ktable 是一个由java开发的,对控制报表的项目,它最大的特点是使用独特的」· Java 代码 · 共 50 行
JAVA
50 行
/*
* Copyright (C) 2004 by Friederich Kupzog Elektronik & Software
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
Author: Friederich Kupzog
fkmk@kupzog.de
www.kupzog.de/fkmk
*/
package de.kupzog.ktable;
/**
* @author Friederich Kupzog
*/
public class KTableCellDoubleClickAdapter
implements KTableCellDoubleClickListener
{
/**
* Is called if a non-fixed cell is selected (gets the focus).
* @see KTable for an explanation of the term "fixed cells".
* @param col
* the column of the cell
* @param row
* the row of the cell
* @param statemask
* the modifier keys that where pressed when the selection happened.
*/
public void cellDoubleClicked(int col, int row, int statemask) {
}
/**
* Is called if a fixed cell is selected (is clicked).
* @see KTable for an explanation of the term "fixed cells".
* @param col
* the column of the cell
* @param row
* the row of the cell
* @param statemask
* the modifier keys that where pressed when the selection happened.
*/
public void fixedCellDoubleClicked(int col, int row, int statemask) {
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?