FileDocCategorySizeDatePackage
LogAlert.javaAPI DocAzureus 3.0.3.42378Mon Mar 19 13:12:20 GMT 2007org.gudy.azureus2.core3.logging

LogAlert

public class LogAlert extends Object
author
TuxPaper

Fields Summary
public static final int
AT_INFORMATION
public static final int
AT_WARNING
public static final int
AT_ERROR
public static final boolean
REPEATABLE
public static final boolean
UNREPEATABLE
public int
entryType
public Throwable
err
public boolean
repeatable
public String
text
public Object[]
relatedTo
A list of events that this entry is related to
Constructors Summary
public LogAlert(boolean repeatable, int type, String text)

param
type
param
text
param
repeatable


	      	 
	       
		entryType = type;
		this.text = text;
		this.repeatable = repeatable;
	
public LogAlert(Object[] relatedTo, boolean repeatable, int type, String text)

		this(repeatable, type, text);
		this.relatedTo = relatedTo;
	
public LogAlert(Object relatedTo, boolean repeatable, int type, String text)

		this(repeatable, type, text);
		this.relatedTo = new Object[] { relatedTo };
	
public LogAlert(boolean repeatable, String text, Throwable err)

		this(repeatable, AT_ERROR, text);
		this.err = err;
	
public LogAlert(Object relatedTo, boolean repeatable, String text, Throwable err)

param
downloadManagerImpl
param
b
param
string
param
e

		this(repeatable, text, err);
		this.relatedTo = new Object[] { relatedTo };
	
Methods Summary