Ignore:
Timestamp:
2015-10-29T23:01:53+01:00 (9 years ago)
Author:
malcolmh
Message:

[seachart] update

Location:
applications/editors/josm/plugins/seachart/src/render
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/seachart/src/render/Rules.java

    r31716 r31722  
    119119        }
    120120       
     121        @SuppressWarnings("unchecked")
    121122        public static Enum<?> getAttEnum(Feature feature, Obj obj, int idx, Att att) {
    122123                ArrayList<?> list = (ArrayList<?>)getAttVal(feature, obj, idx, att);
     
    127128        }
    128129       
     130        @SuppressWarnings("unchecked")
    129131        public static ArrayList<?> getAttList(Feature feature, Obj obj, int idx, Att att) {
    130132                ArrayList<Enum<?>> list = (ArrayList<Enum<?>>)getAttVal(feature, obj, idx, att);
     
    137139        }
    138140       
     141        @SuppressWarnings("unchecked")
    139142        static Scheme getScheme(Feature feature, Obj obj) {
    140143                ArrayList<Color> colours = new ArrayList<Color>();
     
    406409        }
    407410       
     411        @SuppressWarnings("unchecked")
    408412        private static void beacons() {
    409413                if ((Renderer.zoom >= 14) || ((Renderer.zoom >= 12) && ((feature.type == Obj.BCNLAT) || (feature.type == Obj.BCNCAR)))) {
     
    451455        }
    452456       
     457        @SuppressWarnings("unchecked")
    453458        private static void buoys() {
    454459                if ((Renderer.zoom >= 14) || ((Renderer.zoom >= 12) && ((feature.type == Obj.BOYLAT) || (feature.type == Obj.BOYCAR)))) {
     
    620625        }
    621626       
     627        @SuppressWarnings("unchecked")
    622628        private static void harbours() {
    623629                String name = getName();
     
    737743        }
    738744       
     745        @SuppressWarnings("unchecked")
    739746        private static void highways() {
    740747                switch (feature.type) {
     
    767774        }
    768775       
     776        @SuppressWarnings("unchecked")
    769777        private static void landmarks() {
    770778                ArrayList<CatLMK> cats = (ArrayList<CatLMK>) getAttList(feature, feature.type, 0, Att.CATLMK);
     
    814822        }
    815823
     824        @SuppressWarnings("unchecked")
    816825        private static void marinas() {
    817826                if (Renderer.zoom >= 16) {
     
    870879                        }
    871880                        MarSYS sys = MarSYS.SYS_CEVN;
    872                         BnkWTW bnk = BnkWTW.BWW_UNKN;
    873                         AttVal att = feature.atts.get(Att.MARSYS);
     881//                      BnkWTW bnk = BnkWTW.BWW_UNKN;
     882                        AttVal<?> att = feature.atts.get(Att.MARSYS);
    874883                        if (att != null) sys = (MarSYS)att.val;
    875884                        ObjTab objs = feature.objs.get(Obj.NOTMRK);
     
    968977        }
    969978
     979        @SuppressWarnings("unchecked")
    970980        private static void platforms() {
    971981                ArrayList<CatOFP> cats = (ArrayList<CatOFP>) getAttList(feature, Obj.OFSPLF, 0, Att.CATOFP);
     
    10201030        }
    10211031
     1032        @SuppressWarnings("unchecked")
    10221033        private static void shoreline() {
    10231034                CatSLC cat = (CatSLC) getAttEnum(feature, feature.type, 0, Att.CATSLC);
     
    10601071        }
    10611072
     1073        @SuppressWarnings("unchecked")
    10621074        private static void stations() {
    10631075                if (Renderer.zoom >= 14) {
  • applications/editors/josm/plugins/seachart/src/render/Signals.java

    r31343 r31722  
    167167        }
    168168
     169        @SuppressWarnings("unchecked")
    169170        public static void radioStations(Feature feature) {
    170171                Renderer.symbol(feature, Beacons.RadarStation);
Note: See TracChangeset for help on using the changeset viewer.