?? abstractcolumnbinding.java
字號:
/*
* Copyright (C) 2007 Sun Microsystems, Inc. All rights reserved. Use is
* subject to license terms.
*/
package org.jdesktop.swingbinding.impl;
import org.jdesktop.beansbinding.*;
/**
* @author Shannon Hickey
*/
public abstract class AbstractColumnBinding extends Binding {
private int column;
public AbstractColumnBinding(int column, Property columnSource, Property columnTarget, String name) {
super(null, columnSource, null, columnTarget, name);
this.column = column;
setManaged(true);
}
public final int getColumn() {
return column;
}
protected final void setColumn(int column) {
this.column = column;
}
public void bindImpl() {}
public void unbindImpl() {}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -