Package org.openstreetmap.josm.gui.mappaint.BoxTextElemStyle

Examples of org.openstreetmap.josm.gui.mappaint.BoxTextElemStyle.BoxProviderResult


    }

    protected class MapImageBoxProvider implements BoxProvider {
        @Override
        public BoxProviderResult get() {
            return new BoxProviderResult(box(), temporary);
        }
View Full Code Here


                return MapImage.this.equals(other.getParent());
            } else if (temporary) {
                return false;
            } else {
                final BoxProvider other = (BoxProvider) obj;
                BoxProviderResult resultOther = other.get();
                if (resultOther.isTemporary()) return false;
                return box().equals(resultOther.getBox());
            }
        }
View Full Code Here

TOP

Related Classes of org.openstreetmap.josm.gui.mappaint.BoxTextElemStyle.BoxProviderResult

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.