Package org.apache.ivyde.eclipse.ui.menu

Source Code of org.apache.ivyde.eclipse.ui.menu.RetrieveAction

/*
*  Licensed to the Apache Software Foundation (ASF) under one or more
*  contributor license agreements.  See the NOTICE file distributed with
*  this work for additional information regarding copyright ownership.
*  The ASF licenses this file to You under the Apache License, Version 2.0
*  (the "License"); you may not use this file except in compliance with
*  the License.  You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
*  Unless required by applicable law or agreed to in writing, software
*  distributed under the License is distributed on an "AS IS" BASIS,
*  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*  See the License for the specific language governing permissions and
*  limitations under the License.
*
*/
package org.apache.ivyde.eclipse.ui.menu;

import java.util.List;

import org.apache.ivyde.eclipse.IvyPlugin;
import org.apache.ivyde.eclipse.cpcontainer.IvyClasspathUtil;
import org.apache.ivyde.eclipse.resolve.IvyResolveJob;
import org.apache.ivyde.eclipse.resolve.IvyResolver;
import org.apache.ivyde.eclipse.resolve.ResolveRequest;
import org.apache.ivyde.eclipse.retrieve.RetrieveSetup;
import org.apache.ivyde.eclipse.retrieve.StandaloneRetrieveSetup;
import org.eclipse.jface.action.Action;

public class RetrieveAction extends Action {

    private final StandaloneRetrieveSetup setup;

    private IvyResolveJob ivyResolveJob;

    public RetrieveAction(StandaloneRetrieveSetup retrieveSetup) {
        this.setup = retrieveSetup;
        ivyResolveJob = IvyPlugin.getDefault().getIvyResolveJob();
    }

    public void run() {
        RetrieveSetup retrieveSetup = setup.getRetrieveSetup();
        List confs = IvyClasspathUtil.split(retrieveSetup.getRetrieveConfs());
        IvyResolver resolver = new IvyResolver(setup.getIvyXmlPath(), confs, setup.getProject());
        resolver.setRetrievePattern(retrieveSetup.getRetrievePattern());
        resolver.setRetrieveSync(retrieveSetup.isRetrieveSync());
        resolver.setRetrieveTypes(retrieveSetup.getRetrieveTypes());
        ResolveRequest request = new ResolveRequest(resolver, setup.getState());
        ivyResolveJob.addRequest(request);
    }
}
TOP

Related Classes of org.apache.ivyde.eclipse.ui.menu.RetrieveAction

TOP
Copyright © 2018 www.massapi.com. 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.