Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
vadere
vadere
Commits
c8cf88c9
Commit
c8cf88c9
authored
Nov 13, 2016
by
Jakob Schöttl
Browse files
Suppress and fix warnings
parent
cef1efab
Changes
1
Hide whitespace changes
Inline
Side-by-side
VadereGui/src/org/vadere/gui/projectview/view/ScenarioJPanel.java
View file @
c8cf88c9
...
...
@@ -28,11 +28,10 @@ import javax.swing.border.EmptyBorder;
public
class
ScenarioJPanel
extends
JPanel
implements
IProjectChangeListener
,
ProjectFinishedListener
{
private
static
Logger
logger
=
LogManager
.
getLogger
(
ScenarioJPanel
.
class
);
private
static
final
long
serialVersionUID
=
7217609523783631174
L
;
private
static
final
long
serialVersionUID
=
0
L
;
private
JTabbedPane
tabbedPane
;
private
final
JLabel
scenarioName
;
private
ProjectViewModel
model
;
// tabs
private
List
<
JMenu
>
menusInTabs
=
new
ArrayList
<>();
...
...
@@ -56,7 +55,6 @@ public class ScenarioJPanel extends JPanel implements IProjectChangeListener, Pr
ScenarioJPanel
(
JLabel
scenarioName
,
ProjectViewModel
model
)
{
this
.
model
=
model
;
this
.
scenarioName
=
scenarioName
;
this
.
onlineVisualization
=
new
OnlineVisualization
(
true
);
this
.
postVisualizationView
=
new
PostvisualizationWindow
(
model
.
getCurrentProjectPath
());
...
...
@@ -66,6 +64,7 @@ public class ScenarioJPanel extends JPanel implements IProjectChangeListener, Pr
setBounds
(
0
,
0
,
500
,
100
);
}
@SuppressWarnings
(
"serial"
)
private
void
initialize
()
{
initialized
=
true
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment