package com.vci.client.ui.swing.components; import javax.swing.JLayeredPane; 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 VCIJLayeredPane extends JLayeredPane { /** * */ private static final long serialVersionUID = 2351020759005483745L; public VCIJLayeredPane() { super(); 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; } }