?? horizontalscrollbarpolicyitems.java
字號:
/* * HorizontalAlignmentWrapper.java * * Created on 2007-8-19, 16:48:45 * * To change this template, choose Tools | Templates * and open the template in the editor. */package dyno.swing.designer.properties.items;import dyno.swing.designer.properties.wrappers.*;import dyno.swing.designer.properties.types.Item;import javax.swing.ScrollPaneConstants;/** * * @author William Chen */public class HorizontalScrollBarPolicyItems implements ItemProvider { private static Item[] VALUE_ITEMS = { new Item("AS_NEEDED", ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED, "javax.swing.ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED"), new Item("NEVER", ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER, "javax.swing.ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER"), new Item("ALWAYS", ScrollPaneConstants.HORIZONTAL_SCROLLBAR_ALWAYS, "javax.swing.ScrollPaneConstants.HORIZONTAL_SCROLLBAR_ALWAYS") }; public HorizontalScrollBarPolicyItems() { } @Override public Item[] getItems() { return VALUE_ITEMS; }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -