Privating variables
This commit is contained in:
parent
5a7aa1797c
commit
0d67614456
4 changed files with 13 additions and 13 deletions
app/src/main/java/info/nerull7/mysqlbrowser
|
@ -15,8 +15,8 @@ import android.widget.ListView;
|
|||
* Created by nerull7 on 14.07.14.
|
||||
*/
|
||||
public class DatabaseFragment extends Fragment implements AdapterView.OnItemClickListener {
|
||||
ListView databasesListView;
|
||||
ListAdapter listAdapter;
|
||||
private ListView databasesListView;
|
||||
private ListAdapter listAdapter;
|
||||
|
||||
@Override
|
||||
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState){
|
||||
|
|
|
@ -20,11 +20,11 @@ import java.util.List;
|
|||
* Created by nerull7 on 15.07.14.
|
||||
*/
|
||||
public class EntriesFragment extends Fragment {
|
||||
String databaseName;
|
||||
String tableName;
|
||||
TableLayout entriesTable;
|
||||
ScrollView entriesScrollView;
|
||||
FrameLayout headerFrame;
|
||||
private String databaseName;
|
||||
private String tableName;
|
||||
private TableLayout entriesTable;
|
||||
private ScrollView entriesScrollView;
|
||||
private FrameLayout headerFrame;
|
||||
private int entriesLimit;
|
||||
|
||||
@Override
|
||||
|
|
|
@ -17,9 +17,9 @@ import info.nerull7.mysqlbrowser.db.RealDatabaseConnector;
|
|||
* Created by nerull7 on 07.07.14.
|
||||
*/
|
||||
public class LoginFragment extends Fragment implements View.OnClickListener {
|
||||
EditText urlTextbox;
|
||||
EditText loginTextbox;
|
||||
EditText passwordTextbox; // TODO: Mega super epic security (RSA/AES maybe?)
|
||||
private EditText urlTextbox;
|
||||
private EditText loginTextbox;
|
||||
private EditText passwordTextbox; // TODO: Mega super epic security (RSA/AES maybe?)
|
||||
|
||||
public LoginFragment(){
|
||||
|
||||
|
|
|
@ -15,9 +15,9 @@ import android.widget.ListView;
|
|||
* Created by nerull7 on 14.07.14.
|
||||
*/
|
||||
public class TableFragment extends Fragment implements AdapterView.OnItemClickListener {
|
||||
String databaseName;
|
||||
ListView tablesList;
|
||||
ListAdapter listAdapter;
|
||||
private String databaseName;
|
||||
private ListView tablesList;
|
||||
private ListAdapter listAdapter;
|
||||
|
||||
@Override
|
||||
public View onCreateView(LayoutInflater inflater, ViewGroup container,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue