?? ietypepropertydescriptor.java
字號(hào):
package com.intotherain.examples.SimpleCellEditor.properties;
import org.eclipse.jface.viewers.CellEditor;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.ui.views.properties.PropertyDescriptor;
import com.intotherain.examples.SimpleCellEditor.CellEditors.EditIETypeCellEditor;
import com.intotherain.examples.SimpleCellEditor.model.Record;
/**
*
* @author intotherain
*
*/
public class IETypePropertyDescriptor extends PropertyDescriptor{
private Record record;
public IETypePropertyDescriptor(Object id, String displayName, Record r) {
super(id, displayName);
record = r;
}
@Override
public CellEditor createPropertyEditor(Composite parent) {
return new EditIETypeCellEditor(parent, record);
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -