uidesigner/com.nokia.sdt.uidesigner.derived/src/com/nokia/sdt/component/property/IUndoablePropertySource.java
author dadubrow
Wed, 01 Jul 2009 11:31:17 -0500
changeset 337 c44c75698736
parent 0 fb279309251b
permissions -rw-r--r--
[Bug 9392] Filter connection types with no compatible services from settings wizard (unless editing a connection of that type)

/*******************************************************************************
 * Copyright (C) 2006 Nokia Corporation. All rights reserved.
 * Made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *******************************************************************************/

package com.nokia.sdt.component.property;


public interface IUndoablePropertySource {
	
	/**
	 * Returns an opaque object that can be used to set this property source to a previous state.
	 * 
	 * @return Object
	 */
	public Object getUndoValue();
	
	/**
	 * Resets this property source to the state it had when getUndoValue() was called.
	 * 
	 * @param undoValue an Object
	 * @param preserveLocalizedStringKeys if true, localized string keys (macros) are
	 * preserved if they don't collide with existing keys. When false, or upon collision
	 * new keys are generated.
	 */
 	public void setFromUndoValue(Object undoValue, boolean preserveLocalizedStringKeys);
}