ScriptResource.java 422 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  aQute.bnd.annotation.ProviderType
 */
package com.adobe.granite.ui.clientlibs.script;

import aQute.bnd.annotation.ProviderType;
import java.io.IOException;
import java.io.Reader;

@ProviderType
public interface ScriptResource {
    public String getName();

    public Reader getReader() throws IOException;

    public long getSize();
}