This repository has been archived by the owner on Apr 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from firesoft-de/dev
Version 0.3 überführen
- Loading branch information
Showing
40 changed files
with
1,119 additions
and
226 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,5 @@ server/skripte/access.txt | |
*.csv | ||
*.sql | ||
server/Datenbank | ||
Vorstellung | ||
server/skripte/config/.htaccess |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":2},"path":"app-release.apk","properties":{"packageId":"dresden.de.digitaleTaschenkarteBeladung","split":"","minSdkVersion":"18"}}] | ||
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":3},"path":"app-release.apk","properties":{"packageId":"dresden.de.digitaleTaschenkarteBeladung","split":"","minSdkVersion":"18"}}] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
DiTaKa/app/src/main/java/dresden/de/digitaleTaschenkarteBeladung/data/ImageItem.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
package dresden.de.digitaleTaschenkarteBeladung.data; | ||
|
||
|
||
import android.arch.persistence.room.Entity; | ||
import android.arch.persistence.room.Ignore; | ||
import android.arch.persistence.room.PrimaryKey; | ||
import android.graphics.Bitmap; | ||
|
||
@Entity(tableName = "image") | ||
public class ImageItem { | ||
|
||
@PrimaryKey | ||
private int id; | ||
|
||
private String path; | ||
private int categoryID; | ||
|
||
// @Ignore | ||
// private Bitmap image; | ||
|
||
public ImageItem(int id, String path, int categoryID) { | ||
this.id = id; | ||
this.path = path; | ||
this.categoryID = categoryID; | ||
} | ||
|
||
public void setId(int id) {} | ||
public void setPath(String path) {this.path = path;} | ||
public void setCategoryID(int categoryID) {this.categoryID = categoryID;} | ||
// public void setImage(Bitmap bitmap) {this.image = bitmap;} | ||
|
||
public int getId() {return id;} | ||
public String getPath() {return path;} | ||
public int getCategoryID() {return categoryID;} | ||
|
||
|
||
// public Bitmap getImage() {return image;} | ||
} |
Oops, something went wrong.