Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RadioObservatory
LOFAR
Commits
9d6a1776
Commit
9d6a1776
authored
18 years ago
by
Arthur Coolen
Browse files
Options
Downloads
Patches
Plain Diff
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
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
SAS/OTB/OTB/src/nl/astron/lofar/sas/otb/util/IViewPanel.java
+27
-0
27 additions, 0 deletions
SAS/OTB/OTB/src/nl/astron/lofar/sas/otb/util/IViewPanel.java
with
27 additions
and
0 deletions
SAS/OTB/OTB/src/nl/astron/lofar/sas/otb/util/IViewPanel.java
0 → 100644
+
27
−
0
View file @
9d6a1776
/*
* 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
);
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment