blob: 3e8c82fd429e30e5c4f3c75790f1526e15bed4c7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2002-2006 Innoopract Informationssysteme GmbH.
* All rights reserved. This program and the accompanying materials
* are 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
*
* Contributors:
* Innoopract Informationssysteme GmbH - initial API and implementation
******************************************************************************/
package org.eclipse.swt.internal.widgets;
import java.util.HashMap;
import java.util.Map;
import org.eclipse.swt.lifecycle.IRenderRunnable;
import org.eclipse.swt.lifecycle.IWidgetAdapter;
public final class WidgetAdapter implements IWidgetAdapter {
private final String id;
private boolean initialized;
private final Map preservedValues;
private String jsParent;
private IRenderRunnable renderRunnable;
public WidgetAdapter() {
id = IdGenerator.getInstance().newId();
preservedValues = new HashMap();
}
public String getId() {
return id;
}
public boolean isInitialized() {
return initialized;
}
public void setInitialized( boolean initialized ) {
this.initialized = initialized;
}
public void preserve( final String propertyName, final Object value ) {
preservedValues.put( propertyName, value );
}
public Object getPreserved( final String propertyName ) {
return preservedValues.get( propertyName );
}
public void clearPreserved() {
preservedValues.clear();
}
public String getJSParent() {
return jsParent;
}
public void setJSParent( final String jsParent ) {
this.jsParent = jsParent;
}
public void setRenderRunnable( final IRenderRunnable renderRunnable ) {
if( this.renderRunnable != null ) {
throw new IllegalStateException( "A renderRunnable was already set." );
}
this.renderRunnable = renderRunnable;
}
public IRenderRunnable getRenderRunnable() {
return renderRunnable;
}
public void clearRenderRunnable() {
renderRunnable = null;
}
}