1 | package com.jsql.view.swing.scrollpane; | |
2 | ||
3 | import com.jsql.view.swing.util.UiUtil; | |
4 | ||
5 | import javax.swing.*; | |
6 | import java.awt.*; | |
7 | ||
8 | public class LightScrollPaneShell extends LightScrollPane { | |
9 | | |
10 | public LightScrollPaneShell(JComponent component) { | |
11 | | |
12 | super(component); | |
13 | | |
14 | this.colorThumb = UiUtil.COLOR_FOCUS_GAINED; | |
15 | this.scrollBarAlphaRollover = 175; | |
16 | this.scrollBarAlpha = 100; | |
17 | | |
18 |
1
1. <init> : removed call to com/jsql/view/swing/scrollpane/LightScrollPaneShell::setBorder → NO_COVERAGE |
this.setBorder(BorderFactory.createMatteBorder(1, 0, 1, 1, Color.BLACK)); |
19 | } | |
20 | } | |
Mutations | ||
18 |
1.1 |