Uses of Class
org.eclipse.emf.mwe.internal.core.debug.communication.packages.AbstractPackage

Packages that use AbstractPackage
org.eclipse.emf.mwe.internal.core.debug.communication Socket communication implementation for the debugger 
org.eclipse.emf.mwe.internal.core.debug.communication.packages Packet implementation needed for the communication with the debugger 
org.eclipse.emf.mwe.internal.ui.debug.processing.handlers   
 

Uses of AbstractPackage in org.eclipse.emf.mwe.internal.core.debug.communication
 

Methods in org.eclipse.emf.mwe.internal.core.debug.communication that return AbstractPackage
 AbstractPackage PackageReceiver.getPackage(java.lang.Class<? extends AbstractPackage> type, int refId, long timeToWait)
          Get a packet of the requested type with a specific id, wait the specified time until it arrives, if time is negative, wait until socket will be closed
 AbstractPackage PackageReceiver.getPackage(java.lang.Class<? extends AbstractPackage> type, long timeToWait)
          Get a packet of the requested type, wait the specified time until it arrives, if time is negative, wait until socket will be closed
 AbstractPackage Connection.listenForPackage(java.lang.Class<? extends AbstractPackage> type)
           
 AbstractPackage Connection.listenForPackage(java.lang.Class<? extends AbstractPackage> type, int refId)
           
protected  AbstractPackage Connection.readPackage()
           
 

Methods in org.eclipse.emf.mwe.internal.core.debug.communication with parameters of type AbstractPackage
 int Connection.sendPackage(AbstractPackage packet)
           
 int PackageSender.sendPackage(AbstractPackage packet)
          Add a packet to be sent to the other side.
protected  void Connection.writePackage(AbstractPackage packet)
           
 

Method parameters in org.eclipse.emf.mwe.internal.core.debug.communication with type arguments of type AbstractPackage
 AbstractPackage PackageReceiver.getPackage(java.lang.Class<? extends AbstractPackage> type, int refId, long timeToWait)
          Get a packet of the requested type with a specific id, wait the specified time until it arrives, if time is negative, wait until socket will be closed
 AbstractPackage PackageReceiver.getPackage(java.lang.Class<? extends AbstractPackage> type, long timeToWait)
          Get a packet of the requested type, wait the specified time until it arrives, if time is negative, wait until socket will be closed
 AbstractPackage Connection.listenForPackage(java.lang.Class<? extends AbstractPackage> type)
           
 AbstractPackage Connection.listenForPackage(java.lang.Class<? extends AbstractPackage> type, int refId)
           
 

Uses of AbstractPackage in org.eclipse.emf.mwe.internal.core.debug.communication.packages
 

Subclasses of AbstractPackage in org.eclipse.emf.mwe.internal.core.debug.communication.packages
 class BreakpointPackage
          The packet to communicate set and delete of breakpoints.
 class CommandPackage
          The packet to communicate a process or direct command to the runtime process.
 class ConfirmationPackage
          The packet to communicate the confirmation of a specific packet reference id.
 class EventPackage
          The packet to communicate an event from the runtime process.
 class EventPackageWithFrames
          The packet to communicate an event from the runtime process together with the current stack frame information.
 class HandshakePackage
          The packet to communicate a first handshake.
 class RegisterPackage
          The packet to communicate handlers or adapter class names to be registered in the runtime process.
 class RequireVarPackage
          The packet to communicate a request for variable from a specific frame and variable id.
 class VarDataPackage
          The packet to communicate variable values for a specific reference id.
 

Uses of AbstractPackage in org.eclipse.emf.mwe.internal.ui.debug.processing.handlers
 

Methods in org.eclipse.emf.mwe.internal.ui.debug.processing.handlers that return types with arguments of type AbstractPackage
 java.lang.Class<? extends AbstractPackage> EventPluginHandler.getPackageType()