9 lines
205 B
Java
9 lines
205 B
Java
package com.tridium.ui.theme;
|
|
|
|
import javax.baja.gx.Graphics;
|
|
import javax.baja.ui.pane.BPane;
|
|
|
|
public interface PaneTheme extends WidgetTheme {
|
|
void paintBackground(Graphics graphics, BPane bPane);
|
|
}
|