Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Dr. Michael Petter
CUP Eclipse Plugin
Commits
54d7a75c
Commit
54d7a75c
authored
Dec 05, 2014
by
Sebastian Pretscher
Browse files
Removed old tooltip
parent
f4551f2b
Changes
2
Hide whitespace changes
Inline
Side-by-side
CupPlugin/src/de/tum/in/www2/cupplugin/views/CupConflictGraphView.java
View file @
54d7a75c
...
...
@@ -801,18 +801,18 @@ public class CupConflictGraphView extends CupGraphBase implements
@Override
public
IFigure
getTooltip
(
Object
entity
)
{
return
null
;
/*
org
.
eclipse
.
draw2d
.
Label
description
=
null
;
/*
if (entity instanceof ParserConflictNode) {
ParserConflictNode n = (ParserConflictNode) entity;
description = new org.eclipse.draw2d.Label(n.getDescription());
description.setText(n.getDescription());
return description;
}
*/
description
=
new
org
.
eclipse
.
draw2d
.
Label
(
""
);
return
description
;
*/
}
@Override
...
...
CupPlugin/src/de/tum/in/www2/cupplugin/views/CupReduceGraphView.java
View file @
54d7a75c
...
...
@@ -720,11 +720,6 @@ public class CupReduceGraphView extends CupGraphBase
@Override
public
IFigure
getTooltip
(
Object
entity
)
{
Label
description
=
null
;
if
(
entity
instanceof
ParserReduceNode
)
{
ParserReduceNode
n
=
(
ParserReduceNode
)
entity
;
description
=
new
Label
(
n
.
getDescription
());
return
description
;
}
description
=
new
Label
(
""
);
return
description
;
}
...
...
Write
Preview
Supports
Markdown
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