1 /*
2 * ParallelDisplayUI.java
3 *
4 * Created on 19. November 2001, 16:06
5 *
6 * Copyright 2001 Flo Ledermann flo@subnet.at
7 *
8 * Licensed under GNU General Public License (GPL).
9 * See http://www.gnu.org/copyleft/gpl.html
10 */
11
12 package edu.psu.geovista.app.parvis.gui;
13
14 import javax.swing.plaf.*;
15
16 /***
17 * Abstract UI Delegate for the rendering of the ParallelDisplay component. This
18 * is a swing guideline to provide an empty abstract class as a UI delegat base
19 * class. See BasicParallelDisplayUI for the actual implementation.
20 *
21 * @author Flo Ledermann flo@subnet.at
22 * @version 0.1
23 */
24 public abstract class ParallelDisplayUI extends ComponentUI {
25
26 public ParallelDisplayUI(){ }
27
28 //edited by FAH 30 July 02
29 public abstract void createBrushImage(ParallelDisplay comp);
30 public abstract void renderBrush();
31 }
This page was automatically generated by Maven