View Javadoc

1   package com.loribel.commons.abstraction;
2   
3   /***
4    * Abstraction of a log item.
5    *
6    * @author Grégory Borelli
7    */
8   public interface GB_SimpleLogItemSet
9           extends
10              GB_SimpleLogItem
11  {
12      void setMessage(
13              String a_message);
14  
15      void setDetails(
16              String a_details);
17  
18      void setParameters(
19              Object[] a_parameters);
20  
21      void setLevel(
22              int a_level);
23  
24      void setSource(
25              String a_source);
26  
27  }