Ignore:
Timestamp:
2018-06-11T20:38:24+02:00 (6 years ago)
Author:
Don-vip
Message:

add first/last node methods to IWay

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/WayData.java

    r13907 r13918  
    88
    99/**
    10  * The data (tags and node ids) that is stored for a way in the database
     10 * The data (tags and node ids) that is stored for a way in the database.
     11 * @since 2284
    1112 */
    1213public class WayData extends PrimitiveData implements IWay<NodeData> {
     
    109110        throw new UnsupportedOperationException();
    110111    }
     112
     113    @Override
     114    public Node firstNode() {
     115        throw new UnsupportedOperationException();
     116    }
     117
     118    @Override
     119    public Node lastNode() {
     120        throw new UnsupportedOperationException();
     121    }
     122
     123    @Override
     124    public boolean isFirstLastNode(Node n) {
     125        throw new UnsupportedOperationException();
     126    }
     127
     128    @Override
     129    public boolean isInnerNode(Node n) {
     130        throw new UnsupportedOperationException();
     131    }
    111132}
Note: See TracChangeset for help on using the changeset viewer.