1 package org.argeo.connect.ui;
2
3 /**
4 * Implement this interface to enable being called by the generic Connect
5 * Workbench ForceRefresh command.
6 *
7 * This command is a workaround to manually trigger the refreshment of a part
8 * when automatic refreshment does not work.
9 */
10 public interface Refreshable {
11
12 public void forceRefresh(Object object);
13 }