Package org.jconfig

Examples of org.jconfig.URLFileWatcher


    //Steve Braun - addition
    public void addFileListener( FileListener fileListener ) {
        try {
            String val = ConfigurationUtils.getConfigProperty("jconfig.filewatcher","true");
            if ( val.equalsIgnoreCase("true") ) {
                watcher = new URLFileWatcher( getURL() );
                watcher.addFileListener( fileListener );
                watcher.start();
            }
        }
        catch ( Exception e ) {
View Full Code Here

TOP

Related Classes of org.jconfig.URLFileWatcher

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.