1 package com.loribel.commons.abstraction;
2
3 /***
4 * Abstraction of a debug item.
5 *
6 * @author Gregory Borelli
7 */
8 public interface GB_DebugCallList
9 extends
10 GB_MyPropertyOwner
11 {
12 public static abstract class MY_PROPERTY
13 {
14 public static String COLUMN = "COLUMN";
15 }
16
17 void addColumn(
18 String a_name);
19
20 void addDebugCall(
21 GB_DebugCall a_debugCall);
22 }