Uses of Class
tigase.jaxmpp.core.client.observer.EventType

Packages that use EventType
tigase.jaxmpp.core.client   
tigase.jaxmpp.core.client.connector   
tigase.jaxmpp.core.client.observer   
tigase.jaxmpp.core.client.xmpp.modules   
tigase.jaxmpp.core.client.xmpp.modules.auth   
tigase.jaxmpp.core.client.xmpp.modules.chat   
tigase.jaxmpp.core.client.xmpp.modules.disco   
tigase.jaxmpp.core.client.xmpp.modules.jingle   
tigase.jaxmpp.core.client.xmpp.modules.muc   
tigase.jaxmpp.core.client.xmpp.modules.presence   
tigase.jaxmpp.core.client.xmpp.modules.pubsub   
tigase.jaxmpp.core.client.xmpp.modules.registration   
tigase.jaxmpp.core.client.xmpp.modules.roster   
 

Uses of EventType in tigase.jaxmpp.core.client
 

Fields in tigase.jaxmpp.core.client declared as EventType
static EventType Connector.BodyReceived
           
static EventType JaxmppCore.Connected
           
static EventType Connector.Connected
          Event fires after creates XMPP Stream
static EventType JaxmppCore.Disconnected
           
static EventType Connector.EncryptionEstablished
          Event fires after encrypted connection is established.
static EventType Connector.Error
          Event fires on XMPP Stream error.
static EventType Connector.StanzaReceived
          Event fires after creates XMPP Stream.
static EventType Connector.StanzaSending
           
static EventType Connector.StateChanged
          Event fires after connection state is changed.
static EventType Connector.StreamTerminated
          Event fires after XMPP Stream is terminated.
 

Methods in tigase.jaxmpp.core.client with parameters of type EventType
 void JaxmppCore.addListener(EventType eventType, Listener<?> listener)
           
 void MultiJaxmpp.addListener(EventType eventType, Listener<? extends BaseEvent> listener)
          Adds a listener bound by the given event type.
 void Connector.addListener(EventType eventType, Listener<? extends Connector.ConnectorEvent> listener)
          Adds a listener bound by the given event type.
 void MultiJaxmpp.removeListener(EventType eventType, Listener<? extends BaseEvent> listener)
          Removes a listener.
 void JaxmppCore.removeListener(EventType eventType, Listener<? extends BaseEvent> connectorListener)
           
 void Connector.removeListener(EventType eventType, Listener<Connector.ConnectorEvent> listener)
           
 

Constructors in tigase.jaxmpp.core.client with parameters of type EventType
Connector.ConnectorEvent(EventType type, SessionObject sessionObject)
           
JaxmppCore.JaxmppEvent(EventType type, SessionObject sessionObject)
           
 

Uses of EventType in tigase.jaxmpp.core.client.connector
 

Methods in tigase.jaxmpp.core.client.connector with parameters of type EventType
 void ConnectorWrapper.addListener(EventType eventType, Listener<? extends Connector.ConnectorEvent> listener)
           
 void AbstractBoshConnector.addListener(EventType eventType, Listener<? extends Connector.ConnectorEvent> listener)
           
 void ConnectorWrapper.removeListener(EventType eventType, Listener<Connector.ConnectorEvent> listener)
           
 void AbstractBoshConnector.removeListener(EventType eventType, Listener<Connector.ConnectorEvent> listener)
           
 

Constructors in tigase.jaxmpp.core.client.connector with parameters of type EventType
AbstractBoshConnector.BoshConnectorEvent(EventType type, SessionObject sessionObject)
           
 

Uses of EventType in tigase.jaxmpp.core.client.observer
 

Methods in tigase.jaxmpp.core.client.observer that return EventType
 EventType BaseEvent.getType()
          Returns the type of event.
 

Methods in tigase.jaxmpp.core.client.observer with parameters of type EventType
 void Observable.addListener(EventType eventType, Listener<? extends BaseEvent> listener)
          Adds a listener bound by the given event type.
 void DefaultObservable.addListener(EventType eventType, Listener<? extends BaseEvent> listener)
          Adds a listener bound by the given event type.
 void Observable.fireEvent(EventType eventType, BaseEvent event)
          Fires an event.
 void DefaultObservable.fireEvent(EventType eventType, BaseEvent event)
          Fires an event.
 void Observable.fireEvent(EventType eventType, SessionObject sessionObject)
          Fires BaseEvent.
 void DefaultObservable.fireEvent(EventType eventType, SessionObject sessionObject)
          Fires BaseEvent.
 void Observable.removeListener(EventType eventType, Listener<? extends BaseEvent> listener)
          Removes a listener.
 void DefaultObservable.removeListener(EventType eventType, Listener<? extends BaseEvent> listener)
          Removes a listener.
 

Constructors in tigase.jaxmpp.core.client.observer with parameters of type EventType
BaseEvent(EventType type, SessionObject sessionObject)
           
 

Uses of EventType in tigase.jaxmpp.core.client.xmpp.modules
 

Fields in tigase.jaxmpp.core.client.xmpp.modules declared as EventType
static EventType ResourceBinderModule.ResourceBindError
          Event fires on binding error.
static EventType ResourceBinderModule.ResourceBindSuccess
          Event fires on binding success.
static EventType SessionEstablishmentModule.SessionEstablishmentError
           
static EventType SessionEstablishmentModule.SessionEstablishmentSuccess
           
static EventType StreamFeaturesModule.StreamFeaturesReceived
          Event fires when stream features are received.
 

Methods in tigase.jaxmpp.core.client.xmpp.modules with parameters of type EventType
 void AbstractStanzaModule.addListener(EventType eventType, Listener<? extends BaseEvent> listener)
          Adds a listener bound by the given event type.
 void AbstractIQModule.addListener(EventType eventType, Listener<? extends BaseEvent> listener)
          Adds a listener bound by the given event type.
 void StreamFeaturesModule.addListener(EventType eventType, Listener<? extends StreamFeaturesModule.StreamFeaturesReceivedEvent> listener)
           
 void ResourceBinderModule.addListener(EventType eventType, Listener<ResourceBinderModule.ResourceBindEvent> listener)
           
 void SessionEstablishmentModule.addListener(EventType eventType, Listener<SessionEstablishmentModule.SessionEstablishmentEvent> listener)
           
 void AbstractStanzaModule.removeListener(EventType eventType, Listener<? extends BaseEvent> listener)
          Removes a listener.
 void AbstractIQModule.removeListener(EventType eventType, Listener<? extends BaseEvent> listener)
          Removes a listener.
 void StreamFeaturesModule.removeListener(EventType eventType, Listener<? extends StreamFeaturesModule.StreamFeaturesReceivedEvent> listener)
           
 void ResourceBinderModule.removeListener(EventType eventType, Listener<ResourceBinderModule.ResourceBindEvent> listener)
           
 void SessionEstablishmentModule.removeListener(EventType eventType, Listener<SessionEstablishmentModule.SessionEstablishmentEvent> listener)
           
 

Constructors in tigase.jaxmpp.core.client.xmpp.modules with parameters of type EventType
ResourceBinderModule.ResourceBindEvent(EventType type, SessionObject sessionObject)
           
SessionEstablishmentModule.SessionEstablishmentEvent(EventType type, SessionObject sessionObject)
           
 

Uses of EventType in tigase.jaxmpp.core.client.xmpp.modules.auth
 

Fields in tigase.jaxmpp.core.client.xmpp.modules.auth declared as EventType
static EventType AuthModule.AuthFailed
           
static EventType AuthModule.AuthStart
           
static EventType AuthModule.AuthSuccess
           
 

Methods in tigase.jaxmpp.core.client.xmpp.modules.auth with parameters of type EventType
 void SaslModule.addListener(EventType eventType, Listener<? extends BaseEvent> listener)
           
 void AuthModule.addListener(EventType eventType, Listener<? extends BaseEvent> listener)
           
 void SaslModule.removeListener(EventType eventType, Listener<? extends BaseEvent> listener)
           
 void AuthModule.removeListener(EventType eventType, Listener<? extends BaseEvent> listener)
           
 

Constructors in tigase.jaxmpp.core.client.xmpp.modules.auth with parameters of type EventType
AuthModule.AuthEvent(EventType type, SessionObject sessionObject)
           
NonSaslAuthModule.NonSaslAuthEvent(EventType type, SessionObject sessionObject)
           
SaslModule.SaslEvent(EventType type, SessionObject sessionObject)
           
 

Uses of EventType in tigase.jaxmpp.core.client.xmpp.modules.chat
 

Fields in tigase.jaxmpp.core.client.xmpp.modules.chat declared as EventType
static EventType MessageModule.ChatClosed
           
static EventType MessageModule.ChatCreated
           
static EventType MessageModule.ChatUpdated
           
static EventType MessageModule.MessageReceived
           
static EventType Chat.MessageReceived
           
 

Constructors in tigase.jaxmpp.core.client.xmpp.modules.chat with parameters of type EventType
MessageModule.AbstractMessageEvent(EventType type, SessionObject sessionObject)
           
MessageModule.MessageEvent(EventType type, SessionObject sessionObject)
           
 

Uses of EventType in tigase.jaxmpp.core.client.xmpp.modules.disco
 

Fields in tigase.jaxmpp.core.client.xmpp.modules.disco declared as EventType
static EventType DiscoInfoModule.InfoRequested
           
static EventType DiscoItemsModule.ItemsRequested
           
 

Constructors in tigase.jaxmpp.core.client.xmpp.modules.disco with parameters of type EventType
DiscoInfoModule.DiscoInfoEvent(EventType type, SessionObject sessionObject)
           
DiscoItemsModule.DiscoItemEvent(EventType type, SessionObject sessionObject)
           
 

Uses of EventType in tigase.jaxmpp.core.client.xmpp.modules.jingle
 

Fields in tigase.jaxmpp.core.client.xmpp.modules.jingle declared as EventType
static EventType JingleModule.JingleSessionAccept
           
static EventType JingleModule.JingleSessionInitiation
           
static EventType JingleModule.JingleSessionTerminate
           
static EventType JingleModule.JingleTransportInfo
           
 

Constructors in tigase.jaxmpp.core.client.xmpp.modules.jingle with parameters of type EventType
JingleModule.JingleSessionEvent(EventType type, SessionObject sessionObject, JID sender, String sid)
           
 

Uses of EventType in tigase.jaxmpp.core.client.xmpp.modules.muc
 

Fields in tigase.jaxmpp.core.client.xmpp.modules.muc declared as EventType
static EventType MucModule.JoinRequested
           
static EventType MucModule.MessageError
           
static EventType MucModule.MucMessageReceived
           
static EventType MucModule.NewRoomCreated
           
static EventType MucModule.OccupantChangedNick
           
static EventType MucModule.OccupantChangedPresence
           
static EventType MucModule.OccupantComes
           
static EventType MucModule.OccupantLeaved
           
static EventType MucModule.PresenceError
           
static EventType MucModule.RoomClosed
          Local instance of Chat Room was closed because of, for example, presence error.
static EventType MucModule.StateChange
           
static EventType MucModule.YouJoined
           
 

Constructors in tigase.jaxmpp.core.client.xmpp.modules.muc with parameters of type EventType
MucModule.MucEvent(EventType type, SessionObject sessionObject)
           
 

Uses of EventType in tigase.jaxmpp.core.client.xmpp.modules.presence
 

Fields in tigase.jaxmpp.core.client.xmpp.modules.presence declared as EventType
static EventType PresenceModule.BeforeInitialPresence
           
static EventType PresenceModule.BeforePresenceSend
           
static EventType PresenceModule.ContactAvailable
           
static EventType PresenceModule.ContactChangedPresence
           
static EventType PresenceModule.ContactUnavailable
           
static EventType PresenceModule.ContactUnsubscribed
           
static EventType PresenceModule.SubscribeRequest
           
 

Constructors in tigase.jaxmpp.core.client.xmpp.modules.presence with parameters of type EventType
PresenceModule.PresenceEvent(EventType type, SessionObject sessionObject)
           
 

Uses of EventType in tigase.jaxmpp.core.client.xmpp.modules.pubsub
 

Fields in tigase.jaxmpp.core.client.xmpp.modules.pubsub declared as EventType
static EventType PubSubModule.NotificationReceived
           
 

Constructors in tigase.jaxmpp.core.client.xmpp.modules.pubsub with parameters of type EventType
PubSubModule.PubSubEvent(EventType type, SessionObject sessionObject)
           
 

Uses of EventType in tigase.jaxmpp.core.client.xmpp.modules.registration
 

Fields in tigase.jaxmpp.core.client.xmpp.modules.registration declared as EventType
static EventType InBandRegistrationModule.NotSupportedError
           
static EventType InBandRegistrationModule.ReceivedError
           
static EventType InBandRegistrationModule.ReceivedRequestedFields
           
static EventType InBandRegistrationModule.ReceivedTimeout
           
 

Constructors in tigase.jaxmpp.core.client.xmpp.modules.registration with parameters of type EventType
InBandRegistrationModule.RegistrationEvent(EventType type, SessionObject sessionObject)
           
 

Uses of EventType in tigase.jaxmpp.core.client.xmpp.modules.roster
 

Fields in tigase.jaxmpp.core.client.xmpp.modules.roster declared as EventType
static EventType RosterModule.ItemAdded
           
static EventType RosterModule.ItemRemoved
           
static EventType RosterModule.ItemUpdated
           
 



Copyright © 2006-2012 Tigase. All Rights Reserved.