Example usage for com.google.gwt.user.client.ui Widget setTitle

List of usage examples for com.google.gwt.user.client.ui Widget setTitle

Introduction

In this page you can find the example usage for com.google.gwt.user.client.ui Widget setTitle.

Prototype

public void setTitle(String title) 

Source Link

Document

Sets the title associated with this object.

Usage

From source file:org.nsesa.editor.gwt.an.drafting.client.ui.main.document.source.SourceViewImpl.java

License:EUPL

public SourceViewImpl() {
    final Widget widget = uiBinder.createAndBindUi(this);
    initWidget(widget);/*  w w  w . ja va 2  s  .  c  o  m*/
    if (!GWT.isScript())
        widget.setTitle(this.getClass().getName());
}

From source file:org.nsesa.editor.gwt.an.drafting.client.ui.main.document.sourcefile.actionbar.StaticActionBarViewImpl.java

License:EUPL

@Inject
public StaticActionBarViewImpl() {
    final Widget widget = uiBinder.createAndBindUi(this);
    initWidget(widget);//ww  w  . ja  v  a2s . c om
    if (!GWT.isScript())
        widget.setTitle(this.getClass().getName());
}

From source file:org.nsesa.editor.gwt.an.drafting.client.ui.main.document.sourcefile.DraftingSourceFileViewImpl.java

License:EUPL

@Inject
public DraftingSourceFileViewImpl(final DocumentEventBus documentEventBus,
        final ContentController contentController, final ActionBarController actionBarController,
        final SourceFileHeaderController sourceFileHeaderController) {

    this.contentView = contentController.getView();
    this.actionBarView = actionBarController.getView();
    this.sourceFileHeaderView = sourceFileHeaderController.getView();

    final Widget widget = uiBinder.createAndBindUi(this);
    initWidget(widget);//w w  w . jav a2 s . com
    if (!GWT.isScript())
        widget.setTitle(this.getClass().getName());

    contentController.getView().setScrollPanelOffset(0);
}

From source file:org.nsesa.editor.gwt.an.drafting.client.ui.main.DraftingViewImpl.java

License:EUPL

public DraftingViewImpl() {
    final Widget widget = uiBinder.createAndBindUi(this);
    initWidget(widget);/*from w  w  w  .j  a va  2s .c  o m*/
    if (!GWT.isScript())
        widget.setTitle(this.getClass().getName());
}

From source file:org.nsesa.editor.gwt.compare.client.ui.compare.CompareViewImpl.java

License:EUPL

@Inject
public CompareViewImpl() {
    final Widget widget = uiBinder.createAndBindUi(this);
    initWidget(widget);//  w ww  .  j  ava 2  s.c  o m
    //show class name tool tip in hosted mode
    if (!GWT.isScript())
        widget.setTitle(this.getClass().getName());

    revisionPickerPanel.setCellHorizontalAlignment(revisionsA, HasHorizontalAlignment.ALIGN_CENTER);
    revisionPickerPanel.setCellHorizontalAlignment(revisionVersusLabel, HasHorizontalAlignment.ALIGN_CENTER);
    revisionPickerPanel.setCellHorizontalAlignment(revisionsB, HasHorizontalAlignment.ALIGN_CENTER);
}

From source file:org.nsesa.editor.gwt.core.client.ui.confirmation.ConfirmationViewImpl.java

License:EUPL

@Inject
public ConfirmationViewImpl() {
    final Widget widget = uiBinder.createAndBindUi(this);
    initWidget(widget);//from w ww . ja  va2s  .  c  o m
    //show class name tool tip in hosted mode
    if (!GWT.isScript())
        widget.setTitle(this.getClass().getName());

}

From source file:org.nsesa.editor.gwt.core.client.ui.document.DocumentViewImpl.java

License:EUPL

@Inject
public DocumentViewImpl(final DocumentEventBus documentEventBus, final InfoPanelController infoPanelController,
        final SourceFileController sourceFileController,
        final org.nsesa.editor.gwt.core.client.ui.document.resources.Resources resources) {

    this.documentEventBus = documentEventBus;
    this.sourceFileView = sourceFileController.getView();
    this.infoPanelView = infoPanelController.getView();
    this.resources = resources;

    final Widget widget = uiBinder.createAndBindUi(this);
    initWidget(widget);/*w  ww  . j  a v  a2 s.co  m*/
    //show class name tool tip in hosted mode
    if (!GWT.isScript())
        widget.setTitle(this.getClass().getName());

    switchToTab(0);
}

From source file:org.nsesa.editor.gwt.core.client.ui.document.info.InfoPanelViewImpl.java

License:EUPL

public InfoPanelViewImpl() {
    final Widget widget = uiBinder.createAndBindUi(this);
    initWidget(widget);/*ww w . j  a va  2  s  .co m*/
    //show class name tool tip in hosted mode
    if (!GWT.isScript())
        widget.setTitle(this.getClass().getName());

}

From source file:org.nsesa.editor.gwt.core.client.ui.document.sourcefile.actionbar.ActionBarViewImpl.java

License:EUPL

@Inject
public ActionBarViewImpl() {
    final Widget widget = uiBinder.createAndBindUi(this);
    initWidget(widget);/*from w  w w .j  av a 2  s.c o  m*/
    //show class name tool tip in hosted mode
    if (!GWT.isScript())
        widget.setTitle(this.getClass().getName());

}

From source file:org.nsesa.editor.gwt.core.client.ui.document.sourcefile.actionbar.create.ActionBarCreatePanelViewImpl.java

License:EUPL

@Inject
public ActionBarCreatePanelViewImpl() {
    final Widget widget = uiBinder.createAndBindUi(this);
    initWidget(widget);/*from   w ww  . j a v  a 2 s.  com*/
    //show class name tool tip in hosted mode
    if (!GWT.isScript())
        widget.setTitle(this.getClass().getName());
}