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.amendment.client.ui.document.amendments.AmendmentsPanelViewImpl.java

License:EUPL

/**
 * Create <code>AmendmentsPanelViewImpl</code> with the given parameters
 *
 * @param amendmentsHeaderController//from  w  ww  .  j  a  v a 2 s . c  om
 * @param paginationController
 * @param amendmentsFilterController
 * @param documentEventBus
 */
@Inject
public AmendmentsPanelViewImpl(AmendmentsHeaderController amendmentsHeaderController,
        PaginationController paginationController, AmendmentsFilterController amendmentsFilterController,
        DocumentEventBus documentEventBus) {
    this.documentEventBus = documentEventBus;
    this.amendmentsHeaderView = amendmentsHeaderController.getView();
    this.filterView = amendmentsFilterController.getView();
    this.paginationView = paginationController.getPaginationView();
    paginationController.registerListeners();
    final Widget widget = uiBinder.createAndBindUi(this);

    initWidget(widget);
    //show class name tool tip in hosted mode
    if (!GWT.isScript())
        widget.setTitle(this.getClass().getName());

    registerListeners();
}

From source file:org.nsesa.editor.gwt.amendment.client.ui.document.amendments.filter.AmendmentsFilterViewImpl.java

License:EUPL

/**
 * Create <code>AmendmentsFilterViewImpl</code> and initiale it
 *//*  w w  w  .  ja  va  2s .c om*/
@Inject
public AmendmentsFilterViewImpl() {
    final Widget widget = uiBinder.createAndBindUi(this);
    initWidget(widget);
    //show class name tool tip in hosted mode
    if (!GWT.isScript())
        widget.setTitle(this.getClass().getName());

}

From source file:org.nsesa.editor.gwt.amendment.client.ui.document.amendments.header.AmendmentsHeaderViewImpl.java

License:EUPL

/**
 * Create an empty AmendmentsHeaderViewImpl object
 *//*from   www  .j  a v  a 2  s . c om*/
@Inject
public AmendmentsHeaderViewImpl() {
    final Widget widget = uiBinder.createAndBindUi(this);
    initWidget(widget);
    //show class name tool tip in hosted mode
    if (!GWT.isScript())
        widget.setTitle(this.getClass().getName());

}

From source file:org.nsesa.editor.gwt.an.amendments.client.ui.footer.AkomaNtosoFooterViewImpl.java

License:EUPL

@Inject
public AkomaNtosoFooterViewImpl() {
    final Widget widget = uiBinder.createAndBindUi(this);
    initWidget(widget);/*  w w  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.DraftingDocumentViewImpl.java

License:EUPL

@Inject
public DraftingDocumentViewImpl(final DocumentEventBus documentEventBus,
        final SourceFileController sourceFileController, final OutlineController outlineController,
        final SourceController sourceController, final NumberingController numberingController,
        final PickerController pickerController, final PathController pathController) {

    this.documentEventBus = documentEventBus;
    this.outlineView = outlineController.getView();
    this.sourceFileController = sourceFileController;
    this.sourceFileView = sourceFileController.getView();
    this.pickerView = pickerController.getView();
    this.pathView = pathController.getView();
    this.numberingView = numberingController.getView();

    final Widget widget = uiBinder.createAndBindUi(this);
    initWidget(widget);/*  ww  w .  j a va  2 s  . co  m*/
    if (!GWT.isScript())
        widget.setTitle(this.getClass().getName());
}

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

License:EUPL

@Inject
public NumberingViewImpl(final DocumentEventBus documentEventBus) {
    this.documentEventBus = documentEventBus;
    final Widget widget = uiBinder.createAndBindUi(this);
    initWidget(widget);/*from   ww  w  . j av a2 s  .c  om*/
    if (!GWT.isScript())
        widget.setTitle(this.getClass().getName());
}

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

License:EUPL

@Inject
public OutlineViewImpl(final DocumentEventBus documentEventBus) {
    this.documentEventBus = documentEventBus;
    final Widget widget = uiBinder.createAndBindUi(this);
    initWidget(widget);// w  w  w . ja  v  a  2  s  .c  om
    if (!GWT.isScript())
        widget.setTitle(this.getClass().getName());
}

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

License:EUPL

@Inject
public PathViewImpl(final DocumentEventBus documentEventBus) {
    this.documentEventBus = documentEventBus;
    final Widget widget = uiBinder.createAndBindUi(this);
    initWidget(widget);//from  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.path.replace.ReplaceViewImpl.java

License:EUPL

@Inject
public ReplaceViewImpl(final DocumentEventBus documentEventBus) {
    this.documentEventBus = documentEventBus;
    final Widget widget = uiBinder.createAndBindUi(this);
    initWidget(widget);/*from w  w w  .j  a  v  a  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.picker.PickerViewImpl.java

License:EUPL

@Inject
public PickerViewImpl(final DocumentEventBus documentEventBus) {
    this.documentEventBus = documentEventBus;
    final Widget widget = uiBinder.createAndBindUi(this);
    initWidget(widget);// w w  w  . j  a va2 s .  c  o  m
    if (!GWT.isScript())
        widget.setTitle(this.getClass().getName());
}