001 /*
002 * $Header$
003 * $Revision: 2092 $
004 * $Date: 2008-10-31 15:17:48 +0100 (Fri, 31 Oct 2008) $
005 *
006 * Copyright Computer Science Innovations (CSI), 2004. All rights reserved.
007 */
008 package org.springframework.richclient.core;
009
010 /**
011 * Implementing by application objects whose titles are configurable; for
012 * example, dialogs or wizard pages.
013 *
014 * @author Keith Donald
015 */
016 public interface TitleConfigurable {
017
018 /**
019 * Sets the title.
020 *
021 * @param title
022 * the title
023 */
024 public void setTitle(String title);
025 }