FileDocCategorySizeDatePackage
SystemServiceConnectionLinks.javaAPI DocphoneME MR2 API (J2ME)1676Wed May 02 18:00:10 BST 2007com.sun.midp.services

SystemServiceConnectionLinks

public final class SystemServiceConnectionLinks extends Object

Fields Summary
protected Link
send
protected Link
receive
Constructors Summary
SystemServiceConnectionLinks(Link send, Link receive)


        
        this.send = send;
        this.receive = receive;
    
SystemServiceConnectionLinks(SystemServiceConnectionLinks links)

        this.receive = links.receive;
        this.send = links.send;
    
Methods Summary
voidclose()

        send.close();
        receive.close();
    
LinkgetReceiveLink()

        return receive;
    
LinkgetSendLink()

        return send;