You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
526 B
30 lines
526 B
package com.fr.design.dialog; |
|
|
|
import javax.swing.JPanel; |
|
|
|
/** |
|
* Created by kerry on 2017/10/25. |
|
*/ |
|
public abstract class AttrScrollPane extends BasicScrollPane { |
|
private static final int OVER_WIDTH = 10; |
|
|
|
@Override |
|
public void populateBean(Object ob) { |
|
|
|
} |
|
|
|
@Override |
|
protected String title4PopupWindow() { |
|
return null; |
|
} |
|
|
|
@Override |
|
protected int getOverWidth() { |
|
return OVER_WIDTH; |
|
} |
|
|
|
@Override |
|
protected boolean hideBarWidth() { |
|
return true; |
|
} |
|
}
|
|
|