package com.vci.client.ui.swing.components; import javax.swing.JScrollBar; import com.vci.client.ui.swing.VCISwingUtil; /** * *
Title:
*Description:
*Copyright: Copyright (c) 2012
*Company: VCI
* @author xchao * @time 2012-5-10 * @version 1.0 */ public class VCIJScrollBar extends JScrollBar { /** * */ private static final long serialVersionUID = 2717535443015143104L; public VCIJScrollBar() { this(VERTICAL); } public VCIJScrollBar(int orientation) { this(orientation, 0, 10, 0, 100); } public VCIJScrollBar(int orientation, int value, int extent, int min, int max) { super(orientation, value, extent, min, max); customConstructor(); } private void customConstructor(){ setFont(VCISwingUtil.FONT_DEFAULT); } private Object obj = null; public Object getObj() { return obj; } public void setObj(Object obj) { this.obj = obj; } }