1 package com.loribel.commons.abstraction; 2 3 /*** 4 * Interface for Object with method nextDemo. 5 * 6 * @author Grégory Borelli 7 */ 8 public interface GB_NextDemoOwner 9 extends 10 GB_LabelIconOwner 11 { 12 /*** 13 * Returns true if a next demo is available, false otherwelse. 14 */ 15 boolean nextDemo(boolean a_deep); 16 }