Changeset 29535 in osm for applications/editors/josm/plugins/reltoolbox/src/relcontext/ChosenRelationComponent.java
- Timestamp:
- 2013-04-23T13:43:26+02:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/reltoolbox/src/relcontext/ChosenRelationComponent.java
r25695 r29535 1 1 package relcontext; 2 2 3 import java.awt.Color;4 3 import javax.swing.JLabel; 5 import javax.swing.border.BevelBorder; 6 import javax.swing.border.LineBorder; 4 7 5 import org.openstreetmap.josm.data.osm.Relation; 8 6 … … 16 14 public class ChosenRelationComponent extends JLabel implements ChosenRelationListener { 17 15 18 private ChosenRelation chRel; 16 //private ChosenRelation chRel; 19 17 20 18 public ChosenRelationComponent(ChosenRelation rel) { … … 23 21 setOpaque(true); 24 22 setBorder(new LineBorder(Color.black, 1, true));*/ 25 this.chRel = rel; 23 //this.chRel = rel; 26 24 rel.addChosenRelationListener(this); 27 25 }
Note:
See TracChangeset
for help on using the changeset viewer.
