Package org.eurekastreams.web.client.events

Examples of org.eurekastreams.web.client.events.StreamScopeAddedEvent


                                    StreamScope scope = new StreamScope(scopeType, uniqueId);
                                    scope.setDisplayName(displayName);

                                    Session.getInstance().getEventBus().notifyObservers(
                                            new StreamScopeAddedEvent(scope));
                                }

                                Session.getInstance().getEventBus().removeObserver(GotBulkEntityResponseEvent.class,
                                        this);
                            }
View Full Code Here


            public void itemSelected(final JavaScriptObject obj)
            {
                if (!getEntityType(obj.toString()).equals("NOTSET"))
                {
                    EventBus.getInstance().notifyObservers(
                            new StreamScopeAddedEvent(new StreamScope(getDisplayName(obj.toString()), ScopeType
                                    .valueOf(getEntityType(obj.toString())), getUniqueId(obj.toString()), Long
                                    .parseLong(getStreamScopeId(obj.toString())))));
                }
            }
        });
View Full Code Here

TOP

Related Classes of org.eurekastreams.web.client.events.StreamScopeAddedEvent

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.