Package net.sourceforge.javautil.common.ui

Examples of net.sourceforge.javautil.common.ui.IBasicUserInterface


  public static void downloadDependencies (IClassPackageResolver resolver, ClassPackageResolverNetworkNode... download) {
    boolean success = false;
    IClassPackageDownloadAuthorizer cpa = null;
    switch (ClassPackageContext.getDownloadAuthorization()) {
      case APPROVAL:
        IBasicUserInterface bui = UserInterfaceContext.getUserInterface();
        if (bui != null) {
          cpa = bui.getTool(IClassPackageDownloadAuthorizer.class);
        }
       
        if (cpa == null) cpa = new SimpleDownloadAuthorizer(2);
        if (!cpa.authorize(download)) break;
       
View Full Code Here

TOP

Related Classes of net.sourceforge.javautil.common.ui.IBasicUserInterface

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.