Table of Contents
- 1. WebApp Directory structure
- 2. Sample App
- 3. Dreamhost servers
- 4. Offline
- 5. Crazy Maik
- 6. Actions and Commands
- 7. session fragment
- 8. Network
- 9. functionality
- 10. printing
- 11. HitiPPR_GetPrinterInfo
- 12. PrintingPhotoUtility
- 13. Network Discovery
- 14. update yii apps
- 15. ACT I. Scene I. Verona. A...
- 16. Scene II. A Street.
- 17. Scene III. Capulet's house.
- 18. Scene IV. A street.
- 19. Scene V. Capulet's house.
- 20. PROLOGUE
- 21. ACT II. Scene I. A lane b...
- 22. Scene II. Capulet's orchard.
- 23. Scene III. Friar Laurence...
- 24. Scene IV. A street.
- 25. Scene V. Capulet's orchard.
- 26. Scene VI. Friar Laurence'...
- 27. ACT III. Scene I. A publi...
- 28. Scene II. Capulet's orchard.
- 29. Scene III. Friar Laurence...
- 30. Scene IV. Capulet's house
- 31. Scene V. Capulet's orchard.
- 32. ACT IV. Scene I. Friar La...
- 33. Scene II. Capulet's house.
- 34. Scene III. Juliet's chamber.
- 35. Scene IV. Capulet's house.
- 36. Scene V. Juliet's chamber.
- 37. ACT V. Scene I. Mantua. A...
- 38. Scene II. Verona. Friar L...
HitiPPR_GetPrinterInfo
the constructor
This class is declared as:
public class HitiPPR_GetPrinterInfo extends HitiPPR_PrinterCommand
It's constructor (which is called from SendPhoto()
), does not look very interesting
public HitiPPR_GetPrinterInfo(Context context, MSGHandler msghandler)
{
super(context, msghandler);
m_AttrProductIDString = null;
m_AttrFirmwareVersionStringLength = -1;
m_AttrFirmwareVersionString = null;
m_AttrSerialNumberStringLength = -1;
m_AttrSerialNumber = null;
m_AttrBatteryLevel = null;
}
(The super's constructor is also boring. It simply initializes a whole bunch of variables.)
start()
Well, not sure what is going on here. start()
has not been implemented by HiTi, but takes us all the way in to Java.lang:
/**
* Starts the new Thread of execution. The run() method of
* the receiver will be called by the receiver Thread itself (and not the
* Thread calling start()).
*
* @throws IllegalThreadStateException - if this thread has already started.
* @see Thread#run
*/
public synchronized void start() {
checkNotStarted();
hasBeenStarted = true;
VMThread.create(this, stackSize);
}
