12 lines
262 B
Java
12 lines
262 B
Java
package com.tridium.ui.theme;
|
|
|
|
import javax.baja.gx.BInsets;
|
|
import javax.baja.gx.Graphics;
|
|
import javax.baja.ui.BWidget;
|
|
|
|
public interface ScrollPaneTheme extends PaneTheme {
|
|
BInsets getInsets();
|
|
|
|
void paintBorder(Graphics graphics, BWidget bWidget);
|
|
}
|