MobileResourceLocator.java 802 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  aQute.bnd.annotation.ProviderType
 *  org.apache.sling.api.resource.Resource
 */
package com.adobe.cq.mobile.platform;

import aQute.bnd.annotation.ProviderType;
import com.adobe.cq.mobile.platform.MobileResource;
import org.apache.sling.api.resource.Resource;

@ProviderType
public interface MobileResourceLocator {
    public Iterable<MobileResource> findResourcesByType(Resource var1, String var2);

    public MobileResource getResourceByType(Resource var1, String var2, boolean var3);

    public /* varargs */ MobileResource findAncestorResourceByType(Resource var1, String var2, String ... var3);

    public /* varargs */ MobileResource findClosestResourceByType(Resource var1, String var2, String ... var3);
}