LogAnalyser.java 551 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  aQute.bnd.annotation.ProviderType
 */
package com.adobe.granite.logging;

import aQute.bnd.annotation.ProviderType;
import com.adobe.granite.logging.LogConfigurationEntry;
import com.adobe.granite.logging.LogEntry;
import java.util.List;

@ProviderType
public interface LogAnalyser {
    public LogConfigurationEntry[] getLogConfiguration();

    public void setLogConfiguration(LogConfigurationEntry[] var1);

    public List<LogEntry> getLastLogEntries(int var1);
}