Last change
on this file since 345 was 127, checked in by Wouter Pasman, 6 years ago |
#41 ROLL BACK of rev.126 . So this version is equal to rev. 125
|
File size:
621 bytes
|
Rev | Line | |
---|
[127] | 1 | package genius.gui.tree;
|
---|
| 2 |
|
---|
| 3 | import javax.swing.*;
|
---|
| 4 |
|
---|
| 5 | import genius.core.issue.*;
|
---|
| 6 |
|
---|
| 7 | /**
|
---|
| 8 | *
|
---|
| 9 | * @author Richard Noorlandt
|
---|
| 10 | *
|
---|
| 11 | */
|
---|
| 12 |
|
---|
| 13 | public class ObjectiveValuePanel extends IssueValuePanel {
|
---|
| 14 |
|
---|
| 15 | private static final long serialVersionUID = -4899545167184650567L;
|
---|
| 16 |
|
---|
| 17 | //Constructors
|
---|
| 18 | public ObjectiveValuePanel(NegotiatorTreeTableModel model, Objective objective) {
|
---|
| 19 | super(model, objective);
|
---|
| 20 |
|
---|
| 21 | init(objective);
|
---|
| 22 | }
|
---|
| 23 |
|
---|
| 24 | //Methods
|
---|
| 25 | private void init(Objective objective) {
|
---|
| 26 | this.add(new JLabel("This == Objective"));
|
---|
| 27 | }
|
---|
| 28 |
|
---|
| 29 | public void displayValues(Objective node){
|
---|
| 30 | this.removeAll();
|
---|
| 31 | init(node);
|
---|
| 32 | }
|
---|
| 33 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.