Skip to content
Snippets Groups Projects
Commit 9d6a1776 authored by Arthur Coolen's avatar Arthur Coolen
Browse files

BugID: 604

Interface for panels that should be able to give to tabs in browsers in a dymanic way
parent dbc046d5
No related branches found
No related tags found
No related merge requests found
/*
* IViewPanel.java
*
* Created on 16 mei 2006, 16:10
*
* This interface gives all the public methods for ViewPanels
*
*/
package nl.astron.lofar.sas.otb.util;
import nl.astron.lofar.sas.otb.MainFrame;
/**
*
* @author coolen
*/
public interface IViewPanel {
public void setMainFrame(MainFrame aMainFrame);
public void setContent(Object anObject);
public void setAllEnabled(boolean enabled);
public void enableButtons(boolean visible);
public void setButtonsVisible(boolean visible);
public String getShortName();
public void addActionListener(java.awt.event.ActionListener listener);
public void removeActionListener(java.awt.event.ActionListener listener);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment