Package com.ponysdk.core.place

Examples of com.ponysdk.core.place.PlaceChangeRequestEvent


        final PAnchor anchor = new PAnchor(value);
        anchor.addClickHandler(new PClickHandler() {

            @Override
            public void onClick(final PClickEvent event) {
                UIContext.fireEvent(new PlaceChangeRequestEvent(PlaceChangeCellRenderer.this, place));
            }
        });
        return anchor;
    }
View Full Code Here


    protected abstract IsPWidget buildView();

    protected abstract void updateView(Place place);

    public void goTo(final Place place) {
        UIContext.getRootEventBus().fireEvent(new PlaceChangeRequestEvent(this, place));
    }
View Full Code Here

TOP

Related Classes of com.ponysdk.core.place.PlaceChangeRequestEvent

Copyright © 2018 www.massapicom. 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.