Skip to content
Open
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
8 changes: 8 additions & 0 deletions app/local.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
## This file must *NOT* be checked into Version Control Systems,
# as it contains information specific to your local configuration.
#
# Location of the SDK. This is only used by Gradle.
# For customization when using a Version Control System, please read the
# header note.
#Wed Mar 22 23:46:08 BDT 2023
sdk.dir=C\:\\Users\\USER\\AppData\\Local\\Android\\Sdk
22 changes: 22 additions & 0 deletions app/src/main/java/package1/first_class.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
package package1;

public class first_class {
int roll ;
String name;

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

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

public String getName() {
return name;
}

public int getRoll() {
return roll;
}
}
22 changes: 22 additions & 0 deletions app/src/main/java/package1/sec_class.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
package package1;

public class sec_class {
int roll;
int age;

public int getRoll() {
return roll;
}

public int getAge() {
return age;
}

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

public void setAge(int age) {
this.age = age;
}
}