Package org.plugtree.training.model

Examples of org.plugtree.training.model.Alert


    public AlertSystem() {
        this.initAlerts();
    }

    public void addAlert(AlertType type, String luggageCode, String message){
        Alert alert = new Alert(type, luggageCode, message);
        System.out.println("Alert created: "+ alert);
        this.alerts.get(type).add(alert);
    }
View Full Code Here

TOP

Related Classes of org.plugtree.training.model.Alert

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.