Changeset 10829 in josm


Ignore:
Timestamp:
2016-08-17T23:52:22+02:00 (8 years ago)
Author:
Don-vip
Message:

see #13306 - fix wrong version number

Location:
trunk/src/org/openstreetmap/josm
Files:
9 edited

Legend:

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

    r10827 r10829  
    102102     * @param projection The projection to use.
    103103     * @return The projected east/north coordinates
    104      * @since 10826
     104     * @since 10827
    105105     */
    106106    public EastNorth getEastNorth(Projection projection) {
  • trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/AbstractMapRenderer.java

    r10827 r10829  
    9898     * @param orderNumber The number of the segment in the way.
    9999     * @param clr The color to use for drawing the text.
    100      * @since 10826
     100     * @since 10827
    101101     */
    102102    protected void drawOrderNumber(MapViewPoint p1, MapViewPoint p2, int orderNumber, Color clr) {
     
    194194     * @param space The free space to check against.
    195195     * @return <code>true</code> if segment is larger than required space
    196      * @since 10826
     196     * @since 10827
    197197     */
    198198    public static boolean isLargeSegment(MapViewPoint p1, MapViewPoint p2, int space) {
     
    206206     * @param p2 Second point of the way segment.
    207207     * @return <code>true</code> if segment may be visible.
    208      * @since 10826
     208     * @since 10827
    209209     */
    210210    protected boolean isSegmentVisible(MapViewPoint p1, MapViewPoint p2) {
     
    219219     * @param path The path to append drawing to.
    220220     * @param w The ways to draw node for.
    221      * @since 10826
     221     * @since 10827
    222222     */
    223223    public void visitVirtual(Path2D path, Way w) {
  • trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/ArrowPaintHelper.java

    r10827 r10829  
    88 * This class helps with painting arrows with fixed length along a path.
    99 * @author Michael Zangl
    10  * @since 10826
     10 * @since 10827
    1111 */
    1212public class ArrowPaintHelper {
  • trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/LineClip.java

    r10827 r10829  
    2424     * @param p2 end point of the clipped line
    2525     * @param clipBounds Clip bounds
    26      * @since 10826
     26     * @since 10827
    2727     */
    2828    public LineClip(Point2D p1, Point2D p2, Rectangle2D clipBounds) {
     
    4646    /**
    4747     * @return start point of the clipped line
    48      * @since 10826
     48     * @since 10827
    4949     */
    5050    public Point2D getP1() {
     
    5454    /**
    5555     * @return end point of the clipped line
    56      * @since 10826
     56     * @since 10827
    5757     */
    5858    public Point2D getP2() {
  • trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/MapPath2D.java

    r10827 r10829  
    99 * An extension of {@link Path2D} with special methods for map positions.
    1010 * @author Michael Zangl
    11  * @since 10826
     11 * @since 10827
    1212 */
    1313public class MapPath2D extends Path2D.Double {
  • trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/WireframeMapRenderer.java

    r10827 r10829  
    410410     * @param mv2 Second point of the way segment.
    411411     * @param showDirection <code>true</code> if segment direction should be indicated
    412      * @since 10826
     412     * @since 10827
    413413     */
    414414    protected void drawSegment(MapPath2D path, MapViewPoint mv1, MapViewPoint mv2, boolean showDirection) {
     
    431431     * @param col The color to use for drawing line.
    432432     * @param showDirection <code>true</code> if segment direction should be indicated.
    433      * @since 10826
     433     * @since 10827
    434434     */
    435435    protected void drawSegment(MapViewPoint p1, MapViewPoint p2, Color col, boolean showDirection) {
  • trunk/src/org/openstreetmap/josm/data/projection/Projection.java

    r10827 r10829  
    107107     * Gets the object used as cache identifier when caching results of this projection.
    108108     * @return The object to use as cache key
    109      * @since 10826
     109     * @since 10827
    110110     */
    111111    default Object getCacheKey() {
  • trunk/src/org/openstreetmap/josm/gui/MapViewState.java

    r10827 r10829  
    3333    /**
    3434     * A flag indicating that the point is outside to the top of the map view.
    35      * @since 10826
     35     * @since 10827
    3636     */
    3737    public static final int OUTSIDE_TOP = 1;
     
    3939    /**
    4040     * A flag indicating that the point is outside to the bottom of the map view.
    41      * @since 10826
     41     * @since 10827
    4242     */
    4343    public static final int OUTSIDE_BOTTOM = 2;
     
    4545    /**
    4646     * A flag indicating that the point is outside to the left of the map view.
    47      * @since 10826
     47     * @since 10827
    4848     */
    4949    public static final int OUTSIDE_LEFT = 3;
     
    5151    /**
    5252     * A flag indicating that the point is outside to the right of the map view.
    53      * @since 10826
     53     * @since 10827
    5454     */
    5555    public static final int OUTSIDE_RIGHT = 4;
     
    186186     * @param node The node
    187187     * @return The position of that node.
    188      * @since 10826
     188     * @since 10827
    189189     */
    190190    public MapViewPoint getPointFor(Node node) {
     
    204204     * @param rectangle The rectangle to get.
    205205     * @return The view area.
    206      * @since 10826
     206     * @since 10827
    207207     */
    208208    public MapViewRectangle getViewArea(Rectangle2D rectangle) {
     
    369369         * Get the x coordinate in view space without creating an intermediate object.
    370370         * @return The x coordinate
    371          * @since 10826
     371         * @since 10827
    372372         */
    373373        public abstract double getInViewX();
     
    376376         * Get the y coordinate in view space without creating an intermediate object.
    377377         * @return The y coordinate
    378          * @since 10826
     378         * @since 10827
    379379         */
    380380        public abstract double getInViewY();
     
    450450         * This is the case iff <code>getOutsideRectangleFlags(getViewArea())</code> returns no flags
    451451         * @return true if it is.
    452          * @since 10826
     452         * @since 10827
    453453         */
    454454        public boolean isInView() {
     
    464464         * @param rect The rectangle to check agains.
    465465         * @return The direction in which it is outside of the view, as OUTSIDE_... flags.
    466          * @since 10826
     466         * @since 10827
    467467         */
    468468        public int getOutsideRectangleFlags(MapViewRectangle rect) {
     
    487487         * @param p2 The other point
    488488         * @return The norm
    489          * @since 10826
     489         * @since 10827
    490490         */
    491491        public double oneNormInView(MapViewPoint p2) {
     
    497497         * @param p2 The other point
    498498         * @return The squared distance.
    499          * @since 10826
     499         * @since 10827
    500500         */
    501501        public double distanceToInViewSq(MapViewPoint p2) {
     
    509509         * @param p2 The other point
    510510         * @return The distance.
    511          * @since 10826
     511         * @since 10827
    512512         */
    513513        public double distanceToInView(MapViewPoint p2) {
     
    636636         * Check if the rectangle intersects the map view area.
    637637         * @return <code>true</code> if it intersects.
    638          * @since 10826
     638         * @since 10827
    639639         */
    640640        public boolean isInView() {
  • trunk/src/org/openstreetmap/josm/gui/mappaint/styleelement/Symbol.java

    r10827 r10829  
    1414/**
    1515 * The definition of a symbol that should be rendered at the node position.
    16  * @since 10826 Extracted from {@link NodeElement}
     16 * @since 10827 Extracted from {@link NodeElement}
    1717 */
    1818public class Symbol {
Note: See TracChangeset for help on using the changeset viewer.