Commit fde334442c5d71b872318476f2efd1d5ac7f462c

Authored by JLo'w
1 parent 44c6397c

Update header avec une valeur correcte pour $USER

PremiereActivite/app/src/main/java/com/example/app_10p5/ASyncResponse.java
... ... @@ -3,7 +3,7 @@ package com.example.app_10p5;
3 3 import org.json.JSONObject;
4 4  
5 5 /**
6   - * Created by beaus on 30/04/2016.
  6 + * Created by Jean-loup Beaussart on 30/04/2016.
7 7 */
8 8 public interface ASyncResponse {
9 9 void processFinish(JSONObject output);
... ...
PremiereActivite/app/src/main/java/com/example/app_10p5/ConnectionFragment.java
... ... @@ -7,7 +7,7 @@ import android.view.View;
7 7 import android.view.ViewGroup;
8 8  
9 9 /**
10   - * Created by beaus on 05/05/2016.
  10 + * Created by Jean-loup Beaussart on 05/05/2016.
11 11 */
12 12 public class ConnectionFragment extends Fragment {
13 13 @Override
... ...
PremiereActivite/app/src/main/java/com/example/app_10p5/DecimalDigitsInputFilter.java
... ... @@ -7,7 +7,7 @@ import java.util.regex.Matcher;
7 7 import java.util.regex.Pattern;
8 8  
9 9 /**
10   - * Created by beaus on 02/05/2016.
  10 + * Created by Jean-loup Beaussart on 02/05/2016.
11 11 */
12 12 public class DecimalDigitsInputFilter implements InputFilter {
13 13  
... ...
PremiereActivite/app/src/main/java/com/example/app_10p5/MainActivite.java
... ... @@ -29,7 +29,7 @@ import java.util.HashMap;
29 29  
30 30  
31 31 /**
32   - * Created by beaus on 24/04/2016.
  32 + * Created by Jean-loup Beaussart on 24/04/2016.
33 33 */
34 34 public class MainActivite extends Activity implements ASyncResponse, main_tab_frag.OnFragmentInteractionListener {
35 35  
... ...
PremiereActivite/app/src/main/java/com/example/app_10p5/NFCFragment.java
... ... @@ -17,7 +17,7 @@ import java.net.URLEncoder;
17 17 import java.util.HashMap;
18 18  
19 19 /**
20   - * Created by beaus on 05/05/2016.
  20 + * Created by Jean-loup Beaussart on 05/05/2016.
21 21 */
22 22 public class NFCFragment extends Fragment {
23 23 private HashMap<String, String> mParam;
... ...
PremiereActivite/app/src/main/java/com/example/app_10p5/NetworkThread.java
... ... @@ -15,7 +15,7 @@ import java.util.Map;
15 15 import javax.net.ssl.HttpsURLConnection;
16 16  
17 17 /**
18   - * Created by beaus on 30/04/2016.
  18 + * Created by Jean-loup Beaussart on 30/04/2016.
19 19 */
20 20 public class NetworkThread extends AsyncTask<Void, Void, JSONObject> {
21 21 public ASyncResponse delegate = null;
... ...
PremiereActivite/app/src/main/java/com/example/app_10p5/PagerAdapter.java
1 1 package com.example.app_10p5;
2 2  
3 3 /**
4   - * Created by beaus on 24/04/2016.
  4 + * Created by Jean-loup Beaussart on 24/04/2016.
5 5 */
6 6 import android.app.Fragment;
7 7 import android.app.FragmentManager;
... ...
PremiereActivite/app/src/main/java/com/example/app_10p5/SettingsFragment.java
... ... @@ -4,7 +4,7 @@ import android.os.Bundle;
4 4 import android.preference.PreferenceFragment;
5 5  
6 6 /**
7   - * Created by beaus on 05/05/2016.
  7 + * Created by Jean-loup Beaussart on 05/05/2016.
8 8 */
9 9 public class SettingsFragment extends PreferenceFragment {
10 10 @Override
... ...
PremiereActivite/app/src/main/java/com/example/app_10p5/TabFragment1.java
... ... @@ -14,7 +14,7 @@ import android.widget.EditText;
14 14 import java.util.ArrayList;
15 15  
16 16 /**
17   - * Created by beaus on 24/04/2016.
  17 + * Created by Jean-loup Beaussart on 24/04/2016.
18 18 */
19 19  
20 20 public class TabFragment1 extends Fragment {
... ...
PremiereActivite/app/src/main/java/com/example/app_10p5/TabFragment2.java
... ... @@ -7,7 +7,7 @@ import android.view.View;
7 7 import android.view.ViewGroup;
8 8  
9 9 /**
10   - * Created by beaus on 24/04/2016.
  10 + * Created by Jean-loup Beaussart on 24/04/2016.
11 11 */
12 12  
13 13 public class TabFragment2 extends Fragment {
... ...
PremiereActivite/app/src/main/java/com/example/app_10p5/TabFragment3.java
... ... @@ -8,7 +8,7 @@ import android.view.View;
8 8 import android.view.ViewGroup;
9 9  
10 10 /**
11   - * Created by beaus on 24/04/2016.
  11 + * Created by Jean-loup Beaussart on 24/04/2016.
12 12 */
13 13  
14 14 public class TabFragment3 extends Fragment {
... ...
PremiereActivite/app/src/main/java/com/example/app_10p5/TabFragment4.java
... ... @@ -7,7 +7,7 @@ import android.view.View;
7 7 import android.view.ViewGroup;
8 8  
9 9 /**
10   - * Created by beaus on 24/04/2016.
  10 + * Created by Jean-loup Beaussart on 24/04/2016.
11 11 */
12 12  
13 13 public class TabFragment4 extends Fragment {
... ...
PremiereActivite/app/src/main/java/com/example/app_10p5/main_tab_frag.java
... ... @@ -9,6 +9,10 @@ import android.view.LayoutInflater;
9 9 import android.view.View;
10 10 import android.view.ViewGroup;
11 11  
  12 +/**
  13 + * Created by Jean-loup Beaussart on 04/05/2016.
  14 + */
  15 +
12 16 public class main_tab_frag extends Fragment {
13 17  
14 18  
... ...