Package com.scooterframework.admin

Examples of com.scooterframework.admin.FileChangeNotice


    public static I18nConfig getInstance() {
        return me;
    }
   
    public void update(Observable o, Object arg) {
        FileChangeNotice notice = (FileChangeNotice)arg;
        if (FileChangeNotice.ADD_FILE.equals(notice.getAction())) {
            added(notice.getFile());
        }
        else if (FileChangeNotice.MODIFY_FILE.equals(notice.getAction())) {
            modified(notice.getFile());
        }
        else if (FileChangeNotice.DELETE_FILE.equals(notice.getAction())) {
            deleted(notice.getFile());
        }
    }
View Full Code Here

TOP

Related Classes of com.scooterframework.admin.FileChangeNotice

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.