Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3ffaf5885acbca9b9779054ca19af0fddd5817e3 (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
package org.eclipse.jst.jsf.designtime.internal.resources;

/**
 * A container for JSFResource's.  This is a fragment in that it's identifier
 * may not point to a valid JSFResource but rather a portion of that nonetheless
 * maps to some interesting underlying contain object such as an IFolder.
 * 
 * @author cbateman
 *
 */
public abstract class JSFResourceContainer extends JSFResourceFragment implements IJSFResourceContainer
{

    /**
     * @param id
     */
    public JSFResourceContainer(ResourceFragmentIdentifier id)
    {
        super(id, Type.CONTAINER);
    }

    @Override
    public abstract boolean isAccessible();

}

Back to the top