Package org.gwtoolbox.sample.ioc.client

Source Code of org.gwtoolbox.sample.ioc.client.DialogInfoBox

package org.gwtoolbox.sample.ioc.client;

import com.google.gwt.user.client.ui.DialogBox;
import com.google.gwt.user.client.ui.Label;
import org.gwtoolbox.ioc.core.client.annotation.Component;

/**
* @author Uri Boness
*/
@Component(name = "dialogInfoBox")
public class DialogInfoBox implements InfoBox {

    public void show(String message) {
        DialogBox dialog = new DialogBox(true, true);
        dialog.setText("Info Box");
        dialog.setWidget(new Label(message));
        dialog.center();
        dialog.show();
    }
}
TOP

Related Classes of org.gwtoolbox.sample.ioc.client.DialogInfoBox

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.