Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

fi.kvanttisofta.sms
Class SmsMsgOutgoing  view SmsMsgOutgoing download SmsMsgOutgoing.java

java.lang.Object
  extended byfi.kvanttisofta.sms.SmsMsgOutgoing

public class SmsMsgOutgoing
extends java.lang.Object


Field Summary
private  java.lang.String msg
           
private  java.lang.String recipientAddress
           
private  java.lang.String recipientAddressEnc
           
private  int recipientAddressLength
           
private  int recipientAddressType
           
 int SMS_MSG_ENCODING_7BIT
           
private  java.lang.String smscAddress
           
private  int smscAddressLength
           
private  int smscAddressType
           
private  int smsSubmitCode
           
private  int tpDcs
           
private  int tpMsgRef
           
private  int tpPid
           
private  java.lang.String tpUd
           
private  int tpUdl
           
private  int tpValidity
           
 
Constructor Summary
SmsMsgOutgoing(java.lang.String recipientAddress, java.lang.String msg)
           
 
Method Summary
static void main(java.lang.String[] args)
           
 void setMessage(java.lang.String msg)
           
 void setTarget(java.lang.String number)
           
 java.lang.String toString()
          Convert this Object to a human-readable String.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

SMS_MSG_ENCODING_7BIT

public final int SMS_MSG_ENCODING_7BIT
See Also:
Constant Field Values

smscAddressLength

private int smscAddressLength

smscAddressType

private int smscAddressType

smscAddress

private java.lang.String smscAddress

smsSubmitCode

private int smsSubmitCode

tpMsgRef

private int tpMsgRef

recipientAddressLength

private int recipientAddressLength

recipientAddressType

private int recipientAddressType

recipientAddress

private java.lang.String recipientAddress

recipientAddressEnc

private java.lang.String recipientAddressEnc

tpPid

private int tpPid

tpDcs

private int tpDcs

tpValidity

private int tpValidity

tpUdl

private int tpUdl

tpUd

private java.lang.String tpUd

msg

private java.lang.String msg
Constructor Detail

SmsMsgOutgoing

public SmsMsgOutgoing(java.lang.String recipientAddress,
                      java.lang.String msg)
Method Detail

toString

public java.lang.String toString()
Description copied from class: java.lang.Object
Convert this Object to a human-readable String. There are no limits placed on how long this String should be or what it should contain. We suggest you make it as intuitive as possible to be able to place it into System.out.println() 55 and such.

It is typical, but not required, to ensure that this method never completes abruptly with a java.lang.RuntimeException.

This method will be called when performing string concatenation with this object. If the result is null, string concatenation will instead use "null".

The default implementation returns getClass().getName() + "@" + Integer.toHexString(hashCode()).


setTarget

public void setTarget(java.lang.String number)

setMessage

public void setMessage(java.lang.String msg)

main

public static void main(java.lang.String[] args)