Skip to main content
summaryrefslogtreecommitdiffstats
blob: 2383300b735a4ca0643e3ae7dde74db8326e1f9a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*******************************************************************************
 * Copyright (c) 2010, 2019 IBM Corporation and others.
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.jst.jsf.common.internal.finder.acceptor;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.Enumeration;
import java.util.List;
import java.util.jar.JarEntry;
import java.util.jar.JarFile;

import org.eclipse.jst.jsf.common.internal.finder.VisitorMatcher.MatchingAcceptor;

/**
 * An acceptor that gets the jar entries from a jar file.
 * 
 * @author cbateman
 *
 */
public class JarEntryMatchingAcceptor extends
        MatchingAcceptor<JarFile, JarEntry>
{

    @Override
    protected Collection<? extends JarEntry> getInputChildren(JarFile inputType)
    {
        final List<JarEntry>  children = new ArrayList<JarEntry>();
        Enumeration<JarEntry> entries = inputType.entries();
        while (entries.hasMoreElements())
        {
            children.add(entries.nextElement());
        }
        return children;
    }

    @Override
    protected Collection<? extends JarEntry> getVisitableChildren(
            JarEntry visitType)
    {
        return Collections.EMPTY_LIST;
    }

}

Back to the top