Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

B2 #13

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open

B2 #13

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 0 additions & 12 deletions .idea/runConfigurations.xml

This file was deleted.

52 changes: 52 additions & 0 deletions app/src/androidTest/java/Branch/Sample_Branch_B1.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
package Branch;

public class Sample_Branch_B1 {
String name,id;
float cgpa;

public Sample_Branch_B1(String name, String id, float cgpa, double income) {
this.name = name;
this.id = id;
this.cgpa = cgpa;
this.income = income;
}

public void setIncome(double income) {
this.income = income;
}

public double getIncome() {
return income;
}

double income;
Sample_Branch_B1(String s,String s1,float f){
this.name=s;
this.id=s1;
this.cgpa=f;
}

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}

public float getCgpa() {
return cgpa;
}

public void setCgpa(float cgpa) {
this.cgpa = cgpa;
}

public String getId() {
return id;
}

public void setId(String id) {
this.id = id;
}
}
26 changes: 26 additions & 0 deletions app/src/androidTest/java/master/master_class.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package master;

public class master_class {
int roll ;
String name;
master_class(String a,int r){
this.roll=r;
this.name=a;
}

public int getRoll() {
return roll;
}

public void setRoll(int roll) {
this.roll = roll;
}

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}
}