Skip to content
Snippets Groups Projects
Staff.java 4.24 KiB
public class Staff {
    public Employee rairai77() {
        return new Employee(
            "Raahil Jain",
            "Student",
            "Sleepy",
            "snorlax.png",
            "A snorlax sitting"
        );
    }
    public Employee mehulc() {
    	return new Employee(
	   "Mehul Chaudhari",
	   "Student",
	   "Eating",
	   "snoopy.jpg",
	   "just snoopy."
	);
    } 
    public Employee xckevin(){
      return new Employee(
        "Kevin",
        "Bro",
        "chill dude",
        "kevin.jpg",
        "Photo"
      );
    }

    public Employee ank05(){
    	return new Employee(
	  "Ankhita",
	  "Student",
	  "Studying",
	  "ankhita.png",
	  "smiley"
	  );
    }

     public Employee ikshitas(){
        return new Employee(
          "Ikshita",
          "Student",
          "Tired",
          "sunset.png",
          "sunset"
          );
    }

    public Employee faangPup() {
        return new Employee(
          "Steve",
          "Company Pup",
          "Provides Moral Support",
          "pup.jpg",
          "the goodest boi"
        );
    }

    public Employee cjobes() {
      return new Employee(
        "Colton",
        "Lead Naps Analyst",
        "What do you mean I'm not valuable to the company?",
        "colton.jpg",
        "Colton smiling with a forest in the background"
      );
    }

    public Employee mxw() {
      return new Employee(
          "Matt",
          "candy thrower",
          "tired",
          "matt.png",
          "matt smiling in front of a polka-dotted wall."
      );
    }

    public Employee antonio6() {
	    return new Employee(
        "Antonio",
        "Teaching Assistant",
        "Tries to help",
        "void.jpg",
	"My favorite plushie void the demodog chillin on the floor"
      );
    }

    public Employee idelong() {
      return new Employee(
        "Ian",
        "Bug Creator",
        "Makes lots of bugs",
        "alpaca.jpg",
        "Alpaca with dandelion hair"
      );
    }

    public Employee pbui27() {
      return new Employee(
        "Peter",
        "Janitor",
        "cleaning up code",
        "pbui27.jpg",
        "Peter as a baby"
      );
    }
    
    public Employee agummadi() {
      return new Employee(
        "Arya",
	"Student",
	"studies",
	"arya.png",
	"just an image"
      );
   }

    public Employee tuongcat() {
        return new Employee(
            "Cat",
            "student",
            "studies",
            "panda.jpg",
            "panda icon"
        );
    }

    public Employee kgrao() {
	return new Employee(
	    "Rao",
	    "Student",
	    "studies",
	    "rao.jpg",
	    "A dog!"
	);
    }

    public Employee isaacwu() {
        return new Employee(
	    "Isaac",
	    "Programmer",
	    "Can I go to sleep now?",
	    "icon.jpeg",
	    "angrily studying"
       );
    }

    public Employee aamangus() {
    	return new Employee(
		"Anthony",
		"Student",
		"studies",
		"Discord Chicken.PNG",
		"funny chicken"
	);
    }

    public Employee tshukl() {
	return new Employee(
		"Tanjal",
		"Student",
		"Cries",
		"redpanda.jpg",
		"A special panda"
	);
    }

    public Employee kesach() {
	return new Employee(
		"Keshav",
		"Procrastinator",
		"I'm hungry",
		"keshav.jpg",
		"a swig of chai"
    	);
    }


    public Employee dhvbnl() {
    	return new Employee (
		"Dhruv",
		"tech student",
		"breaking things that work, making things that break",
		"dhvbnl.jpg",
		"pillow representing dhruv"
	);
    }


    public Employee yixuan19() {
    	return new Employee (
		"Yixuan",
		"Student",
		"Slackin",
		"Goomba.jpg",
		"Shaaaaaaaaark"
	);   
    }


    public Employee skutty() {
        return new Employee(
	    "Sriram",
	    "Student",
	    "sleeping",
	    "cake.jpg",
	    "cake"
        );
    }

    public Employee swangsam(){
    	return new Employee(
		"Samuel",
		"Student",
		"runs",
		"sephiroth.png",
		"sephiroth"
	);
    }

    public Employee erinsong() {
	return new Employee(
		"Erin",
		"Student",
		"Sleeps",
		"sleep.jpg",
		"Brown-haired girl slumped over a desk"
	);
    }

    public Employee lq22() {
        return new Employee(
                "Audrey",
                "Student",
                "Want to sleep",
                "sleeping.jpg",
                "A grey cat tring to sleep on the bed"
        );
    }

}