Interface UpdateCheckInstance

All Known Implementing Classes:
UpdateCheckInstanceImpl

public interface UpdateCheckInstance
  • Field Details

  • Method Details

    • getType

      int getType()
      returns one of the above UCI_ constants
      Returns:
    • getName

      String getName()
      returns the name supplied when the instance was created (or "" if it wasn't)
      Returns:
    • start

      void start()
    • cancel

      void cancel()
    • isCancelled

      boolean isCancelled()
    • getCheckers

      UpdateChecker[] getCheckers()
    • getUpdates

      Update[] getUpdates()
    • createInstaller

      UpdateInstaller createInstaller() throws UpdateException
      Throws:
      UpdateException
    • addUpdatableComponent

      void addUpdatableComponent(UpdatableComponent component, boolean mandatory)
      Add a further updatable component to this instance. Must be called before the check process is started
      Parameters:
      component -
      mandatory -
    • getManager

      UpdateManager getManager()
      Access to the update manager
      Returns:
    • setAutomatic

      void setAutomatic(boolean automatic)
    • isAutomatic

      boolean isAutomatic()
    • setLowNoise

      void setLowNoise(boolean low_noise)
    • isLowNoise

      boolean isLowNoise()
    • isCompleteOrCancelled

      boolean isCompleteOrCancelled()
    • getProperty

      Object getProperty(int property_name)
    • setProperty

      void setProperty(int property_name, Object value)
    • addDecisionListener

      void addDecisionListener(UpdateManagerDecisionListener l)
    • removeDecisionListener

      void removeDecisionListener(UpdateManagerDecisionListener l)
    • addListener

      void addListener(UpdateCheckInstanceListener l)
    • removeListener

      void removeListener(UpdateCheckInstanceListener l)