?? customsheetnode.java
字號:
/* * This source code is part of TWaver 1.3.1 * * SERVA Software PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * Copyright 2000-2005 SERVA Software, Inc. All rights reserved. */package demo.sheet.customsheet;
import java.awt.Color;
/*
* This source code is part of TWaver 1.3.0.
*
* SERVA Software PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
* Copyright 2001-2005 SERVA Software, Inc. All rights reserved
*/
public class CustomSheetNode extends twaver.Node {
public CustomSheetNode() {
super();
init();
};
public CustomSheetNode(Object id) {
super(id);
init();
}
private void init() {
this.putClientProperty("MyProp1", "ABCDEFG");
this.putClientProperty("MyProp2", "www.servasoft.com");
this.putClientProperty("Married", Boolean.TRUE);
this.putClientProperty("Color", new Color(0, 0, 51));
this.putClientProperty("State", State.STOPPED);
this.putClientProperty("Sex", EnumEditor.Sex.getValues()[0]);
this.putClientProperty("Language", EnumEditor.Language.getValues()[1]);
this.putClientProperty("Character", new Character('T'));
this.putClientProperty("Proportion", new Double(0.8));
this.putClientProperty("Scale", new Float(0.3));
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -