Uses of Class
com.jniwrapper.win32.dde.DdeItem

Packages that use DdeItem
com.jniwrapper.win32.dde The com.jniwrapper.win32.dde package contains classes, which allows you to interact with native applications via DDE technology. 
 

Uses of DdeItem in com.jniwrapper.win32.dde
 

Methods in com.jniwrapper.win32.dde with parameters of type DdeItem
 byte[] DdeServiceEventHandler.adviseRequest(java.lang.String topic, DdeItem item)
          Occurs when the value of the item has been changed and it is necessary to notify clients.
 boolean DdeServiceEventHandler.adviseStart(java.lang.String topic, DdeItem item)
          Occurs when a client begins an advise loop.
 void DdeServiceEventHandler.adviseStop(java.lang.String topic, DdeItem item)
          Occurs when a client stops an advise loop.
 DdeResponse DdeServiceEventHandler.pokeData(java.lang.String topic, DdeItem item, byte[] data)
          Occurs when a client sends data to the service.
 byte[] DdeServiceEventHandler.requestData(java.lang.String topic, DdeItem item)
          Occurs when a client makes a request for data.
 byte[] DdeServiceEventAdapter.adviseRequest(java.lang.String topic, DdeItem item)
           
 boolean DdeServiceEventAdapter.adviseStart(java.lang.String topic, DdeItem item)
           
 void DdeServiceEventAdapter.adviseStop(java.lang.String topic, DdeItem item)
           
 DdeResponse DdeServiceEventAdapter.pokeData(java.lang.String topic, DdeItem item, byte[] data)
           
 byte[] DdeServiceEventAdapter.requestData(java.lang.String topic, DdeItem item)
           
 DdeResponse DdeClientEventHandler.itemChanged(DdeItem item, byte[] data)
          Occurs when data of the item is changed.
 void DdeClientEventHandler.asyncActionComplete(DdeItem item, byte[] data, long transactionID)
          Occurs when an asynchronous transaction is processed by the service.
 DdeResponse DdeClientEventAdapter.itemChanged(DdeItem item, byte[] data)
           
 void DdeClientEventAdapter.asyncActionComplete(DdeItem item, byte[] data, long transactionID)
           
 long DdeClient.getAsync(DdeItem item)
          Makes an asynchronous request to the service for data that corresponds to the specified item.
 byte[] DdeClient.get(DdeItem item, long timeout)
          Makes a synchronous request to the service for data that corresponds to the specified item.
 long DdeClient.sendAsync(DdeItem item, byte[] data)
          Asynchronously sends data to the service.
 void DdeClient.send(DdeItem item, byte[] data, long timeout)
          Sends data to the service and waits for a confirmation response.
 long DdeClient.startAdviseLoopAsync(DdeItem item, boolean sendData, boolean sync)
          Asynchronously begins an advise loop.
 void DdeClient.startAdviseLoop(DdeItem item, boolean sendData, boolean sync, long timeout)
          Begins an advise loop and waits for confirmation response from the service.
 long DdeClient.stopAdviseLoopAsync(DdeItem item)
          Asynchronously stops an advise loop.
 void DdeClient.stopAdviseLoop(DdeItem item, long timeout)
          Stops an advise loop and waits for a confirmation response from the service.