1 package com.loribel.commons.abstraction;
2
3 import java.util.*;
4
5 /***
6 * Interface for Object with method to debug.
7 */
8 public interface GB_Debugable
9 {
10
11 /***
12 * Returns an list to debug objects.
13 */
14 List toDebug();
15
16 /***
17 * Returns an id to debug object. You can return : this.toString().
18 *
19 * @return String
20 */
21 String toDebugId();
22
23 }