Übergabe von IFavorites hinzugefügt

This commit is contained in:
m_broelemann 2020-12-28 18:26:42 +01:00
parent 239c63f472
commit eeac813bef

View File

@ -14,7 +14,9 @@ import android.widget.Toast;
import com.example.aped.communication.IIO; import com.example.aped.communication.IIO;
import com.example.aped.utils.ExternalStorageHandler; import com.example.aped.utils.ExternalStorageHandler;
import com.example.aped.communication.TestIO; import com.example.aped.communication.TestIO;
import com.example.aped.utils.IFAVORITES;
import com.example.aped.utils.IXML; import com.example.aped.utils.IXML;
import com.example.aped.utils.TestFavorites;
import com.example.aped.utils.TestXML; import com.example.aped.utils.TestXML;
import com.example.aped.utils.XMLHandler; import com.example.aped.utils.XMLHandler;
import com.google.android.material.navigation.NavigationView; import com.google.android.material.navigation.NavigationView;
@ -51,6 +53,8 @@ public class MainActivity extends AppCompatActivity {
public static IXML xml = new TestXML(); public static IXML xml = new TestXML();
/** zur Verwendung von uebergabe anstatt der direkten Einbindung.*/ /** zur Verwendung von uebergabe anstatt der direkten Einbindung.*/
public static IIO uebergabe = new TestIO(); public static IIO uebergabe = new TestIO();
/** zur Verwendung von favorite anstatt der direkten Einbindung.*/
public static IFAVORITES favorite = new TestFavorites();
/** allgemeines.*/ /** allgemeines.*/
@Override @Override