Package jaid.ais.data

Examples of jaid.ais.data.Target


            e.printStackTrace();
        }
    }

    public Target getTargetByMMSI(String mmsi) {
        Target t = null;
        for (DataSource s : sources) {
            t = s.getTargetByMMSI(mmsi);
            if (t != null) {
                return t;
            }
View Full Code Here


        }
        return t;
    }

    public Target getTargetByName(String name) {
        Target t = null;
        for (DataSource s : sources) {
            t = s.getTargetByName(name);
            if (t != null) {
                return t;
            }
View Full Code Here

TOP

Related Classes of jaid.ais.data.Target

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.