Skip to content
View CristyC123's full-sized avatar

Block or report CristyC123

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
CristyC123/README.md
public class GitHubProfile 
{
    private String name;
    private String interests;
    private String currentlyLearning;
    private String lookingFor;
    private String contactInfo;
    private String pronouns;
    private String funFact;
    private Socials socials;

    public GitHubProfile(String name, String interests, String currentlyLearning, String lookingToCollaborateOn, 
    String contactInfo, String pronouns, String funFact) 
    {
        this.name = name;
        this.interests = interests;
        this.currentlyLearning = currentlyLearning;
        this.lookingToCollaborateOn = lookingToCollaborateOn;
        this.contactInfo = contactInfo;
        this.pronouns = pronouns;
        this.funFact = funFact;
    }

    public String getName() {
        return name;
    }

    public String getInterests() {
        return interests;
    }

    public String getCurrentlyLearning() {
        return currentlyLearning;
    }

    public String getLookingToCollaborateOn() {
        return lookingToCollaborateOn;
    }

    public String getContactInfo() {
        return contactInfo;
    }

    public String getPronouns() {
        return pronouns;
    }

    public String getFunFact() {
        return funFact;
    }

    @Override
    public String toString() {
        return "GitHubProfile{" +
                "name='" + name + '\'' +
                ", interests='" + interests + '\'' +
                ", currentlyLearning='" + currentlyLearning + '\'' +
                ", lookingToCollaborateOn='" + lookingToCollaborateOn + '\'' +
                ", contactInfo='" + contactInfo + '\'' +
                ", pronouns='" + pronouns + '\'' +
                ", funFact='" + funFact + '\'' +
                '}';
    }

    public static void main(String [] args) 
    {
        Socials socials = new Socials("email", "linkedin", "github");

        GitHubProfile gitHubProfile = new GitHubProfile("name", "interests", "currentlyLearning", "lookingToCollaborateOn", "contactInfo", "pronouns", "funFact", socials);
    }
}

class Socials
{
    private String email;
    private String linkedin;
    private String github;

    public Socials(String email, String linkedin, String github) 
    {
        this.email = email;
        this.linkedin = linkedin;
        this.github = github;
    }

    public String getEmail() 
    {
        return email;
    }

    public String getLinkedin() 
    {
        return linkedin;
    }

    public String getGithub() 
    {
        return github;
    }

    @Override
    public String toString() 
    {
        return "Socials{" +
                "email='" + email + '\'' +
                ", linkedin='" + linkedin + '\'' +
                ", github='" + github + '\'' +
                '}';
    }
}

Popular repositories Loading

  1. POOSD-Team-4 POOSD-Team-4 Public

    JavaScript 1 1

  2. CristyC123 CristyC123 Public

    Config files for my GitHub profile.