forked from theexpensiveinformatics/gfgHackthon
-
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.
- Loading branch information
1 parent
fa17c44
commit e541bcb
Showing
14 changed files
with
383 additions
and
17 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package error404.gfg.healthcare; | ||
|
||
import androidx.appcompat.app.AppCompatActivity; | ||
|
||
import android.os.Bundle; | ||
|
||
public class Artical extends AppCompatActivity { | ||
|
||
@Override | ||
protected void onCreate(Bundle savedInstanceState) { | ||
super.onCreate(savedInstanceState); | ||
setContentView(R.layout.activity_artical); | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
package error404.gfg.healthcare; | ||
|
||
public class Model { | ||
String img; | ||
String headline; | ||
String description; | ||
String publisher; | ||
String time; | ||
String weblink; | ||
String ytlink; | ||
|
||
|
||
public String getImg() { | ||
return this.img; | ||
} | ||
public String getHeadline() { | ||
return this.headline; | ||
} | ||
public String getDescription() { | ||
return this.description; | ||
} | ||
public String getTime() { | ||
return this.time; | ||
} | ||
public String getPublisher() { | ||
return this.publisher; | ||
} | ||
public String getWeblink() { | ||
return this.weblink; | ||
} | ||
public String getYtlink() { | ||
return this.ytlink; | ||
} | ||
|
||
public void setImg(String img) { | ||
this.img = img; | ||
} | ||
public void setHeadline(String headline) { | ||
this.headline = headline; | ||
} | ||
public void setDescription(String description) { | ||
this.description = description; | ||
} | ||
public void setPublisher(String publisher) { | ||
this.publisher = publisher; | ||
} | ||
public void setTime(String time) { | ||
this.time = time; | ||
} | ||
public void setWeblink(String weblink) { | ||
this.weblink = weblink; | ||
} | ||
public void setYtlink(String ytlink) { | ||
this.ytlink = ytlink; | ||
} | ||
|
||
|
||
|
||
public Model() | ||
{ | ||
|
||
} | ||
} |
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
Oops, something went wrong.