📄 hcomponent.java
字号:
package org.havi.ui;
public abstract class HComponent extends java.awt.Component implements HMatteLayer {
private HMatte matte;
private boolean enabled;
public HComponent() {
}
public HComponent(int x, int y, int width, int height) {
}
public void setMatte( HMatte m) throws HMatteException {
this.matte = m;
}
public HMatte getMatte() {
return this.matte;
}
public boolean isDoubleBuffered() {
return false;
}
public boolean isOpaque() {
return false;
}
public void setEnabled(boolean b) {
this.enabled = b;
}
public boolean isEnabled() {
return false;
}
protected void processEvent(java.awt.AWTEvent evt) {
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -