asd
Alejandro Acuña
2024-09-16 816cb391a192e357426312ab8e591fd49d1d242e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package art.servers.gui.components;
 
import art.library.gui.flat.FlatPanel;
import art.servers.gui.ArticPanel;
import art.servers.gui.ArticWindow;
import java.awt.Component;
 
 
public class PanelGeneric extends FlatPanel
{
    
    public void reload() {}
    public void timer() {}
    public void selection() {}
    public void deselection() {}
    
    
    
    public ArticWindow getWindow(Component component)
    {
        if ((component instanceof ArticPanel) == true)
        {
            return ((ArticPanel)component).getWindow();
        }
 
        return getWindow(component.getParent());
    }
        
    
}