alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 *                 Sun Public License Notice
 * 
 * The contents of this file are subject to the Sun Public License
 * Version 1.0 (the "License"). You may not use this file except in
 * compliance with the License. A copy of the License is available at
 * http://www.sun.com/
 * 
 * The Original Code is NetBeans. The Initial Developer of the Original
 * Code is Sun Microsystems, Inc. Portions Copyright 1997-2004 Sun
 * Microsystems, Inc. All Rights Reserved.
 */

package org.netbeans.modules.autoupdate;

import java.net.URL;
import java.util.Collection;
import java.util.Date;

import org.w3c.dom.*;

import org.openide.util.*;
import org.openide.modules.ModuleInfo;


/** Serves for building an UpdateCache from XML Document
 * @author  Petr Hrebejk
 */
public abstract class Updates extends Object {

    static final int NO_ERROR = 0;    
    static final int UNKNOWN_ERROR = 1;
    static final int AUTH_ERROR = 2;    
    static final int NO_SERVER_ERROR = 3;
    static final int NO_AVAILABLE_MODULES = 4;
    static final int NO_NETWORK = 5;
    static final int PARSE_ERROR = 6;
    
    /** All installed modules */
    static protected ModuleInfo[] installedModules = null;
    
    /** Stops checking for new updates */
    protected boolean checkCanceled;    
    
    /** Checks for updates in separate thread. Displays progress in a dialog
     */
    public abstract void checkUpdates( final Wizard.Validator validator );

    /** Checks for updates in separate thread. Displays progress in a dialog
     */
    public abstract void checkUpdates( final Wizard.Validator validator, String ucname );
    
    /** Checks for updates in separate thread. Displays progress in a dialog
     */
    public abstract void checkUpdates( final Wizard.Validator validator, AutoupdateType at );

    public void cancelCheck() {
        checkCanceled = true;
    }

    /** Gets the root of the module/module group tree
     * @return The group in the root of the tree.
     */
    public abstract ModuleGroup getRootGroup();
        
    /** Gets the linear structure of all module updates i.e. Collection
     */
    public abstract Collection getModules();

    /** Gets the state of pError the file was not parsed */
    public abstract boolean isError();
    
    /** Gets the state of pError the file was not parsed */
    public abstract int getError();
    
    /** Gets the server error message if there is any */
    public abstract String getErrorMessage();

    /** Gets array of currently installed modules */
    public static ModuleInfo[] getInstalledModules() {
        if ( installedModules == null )
            installedModules = Autoupdater.Support.getModuleDescriptions();
        return installedModules;
    }
    
    static void reset() {
        installedModules = null;
    }

    /** Gets Collection of patches installed in the system */
    public static ModuleInfo[] getInstalledPatches() {
        return PatchChecker.getPatches();
    }

    /** Returns the time stamp of the downloaded XML file */
    public abstract Date getTimeStamp();

    /** Returns notification text if specified otherwise null */
    public abstract String getNotificationText();

    /** Returns notification URL if specified otherwise null */
    public abstract URL getNotificationURL();
        
}
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.