All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fr.lteconsulting.angular2gwt.client.WidgetAdapterPanel Maven / Gradle / Ivy

There is a newer version: 1.8
Show newest version
package fr.lteconsulting.angular2gwt.client;

import com.google.gwt.dom.client.Element;
import com.google.gwt.user.client.ui.RootPanel;
import com.google.gwt.user.client.ui.SimplePanel;

import fr.lteconsulting.angular2gwt.client.interop.ng.core.ElementRef;

public class WidgetAdapterPanel extends SimplePanel
{
	public WidgetAdapterPanel( ElementRef elementRef )
	{
		super( (Element) (Object) elementRef.nativeElement() );

		onAttach();
		RootPanel.detachOnWindowClose( this );
	}
	
	public void remove()
	{
		RootPanel.detachNow( this );
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy