 
        
        - •Introduction
- •Mobile Android platform
- •In addition, it was reported that Google will, at its discretion, remove applications on phones users if developers violated their terms of use.
- •Description of the main mobile platforms
- •Android sdk and jdk
- •Eclipse
- •Web Server
- •Php and json
- •The use case diagram
- •Figure 4 - Example of a use case diagram
- •3.2.2 Register.Java[11]
- •3.2.4 Succes.Java[11]
- •3.2.5 Call.Java[11]
- •3.2.6 JsonParser.Java[11]
- •Figure 9 - jsonParser.Java
- •3.5 User's Guide to the application's
- •4.2 Android Market
- •4.3.3 The costs of operation and maintenance of equipment
- •5.2 Analysis of dangerous and harmful factors
- •5.3 Production sanitation and health
- •5.6 Safety precautions when working with a computer
- •Figure 16 - location of fixtures
- •Conclusion
- •References [1] Android, the world's most popular mobile platform http://developer.Android.Com/about/index.Html
- •19.12.2007) Astana, Akorda, on May 15, 2007
- •[14] Php Cookbook: Solutions and Examples for php Programmers, Second Edition, David Sklar,August, 2006
3.2.2 Register.Java[11]
This class is used for registering a user. Registration is very simple, it has only the login, password and for checking re-password. It has 3 textboxess and 1 button for submission.
Description of the functions and variables of the class Register.java
protected void onCreate (Bundle savedInstanceState) - it is a function of the main interface for querying
public void onClick (View v) - this function starts when you press the button, and if the entered information is correct, sends the information to the database and logs the user
public void onPreExecute () - this function creates a PDialog and shows until the program receives data from the Base
protected String doInBackground (String. .. args) - main function is to register
protected void onPostExecute (String file_url) - sends data to the interface
Table 3 – variables of class Register.java
| Name | Type | Description | 
| jsonParser | JSONParser | To send information to the base | 
| Submit | Button | If the information entered is correct, sends the information to the database and logs the user | 
| ePass | String | Variable for storing passwords | 
| rePass | String | Variable for storing the password again | 
| eError | String | Display errors on this variable if you want to | 
| Ko | Boolean | To check the stored contacts | 
| Yo | TextView | Text if you have successfully logged | 
| url | String | URL php script | 
| Success | Int | For validation | 
| PDialog | ProgressDialog | Animation boot | 
| Login | String | user | 
3.2.3 Login.java[11]
This class is used for user login. To log in a user must write only two parameters: login and password. If these parameters are true, the user enters the main page.
3.2.2.1 Description of the functions and variables of the class Register.java
protected void onCreate (Bundle savedInstanceState) - is a function of the main interface for querying
public void onClick (View v) - this function starts when you press the button, and if the information is correct, it sends the information to the database and logs the user in.
public void onPreExecute () - this function creates a PDialog and shows until the program receives data from the Base
protected String doInBackground (String. .. args) - main function is to register
protected void onPostExecute (String file_url) - sends data to the interface
Table 4 – variables of class Login.java
| Name | Type | Description | 
| jsonParser | JSONParser | To send information to the base | 
| Submit | Button | If the information entered is correct, sends the information to the database and logs the user | 
| ePass | String | Variable for storing passwords | 
| rePass | String | Variable for storing the password again | 
| eError | String | Display errors on this variable if you want to | 
| Ok | Boolean | To verify the correct password | 
| Ko | Boolean | To check the stored contacts | 
| Yo | TextView | Text if you have successfully logged | 
| url | String | URL php script | 
| Success | Int | For validation | 
| PDialog | ProgressDialog | Animation boot | 
| Continue of Table 4 – variables of class Login.java | ||
| Login | String | user | 
| login | String | for login | 
| password | String | For password | 
