Android Open Source - json_resume Basics






From Project

Back to project page json_resume.

License

The source code is released under:

/* * Copyright (c) 2015 Hunter Davis <hunter@hunterdavis.com> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided th...

If you think the Android project json_resume listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.hunterdavis.jsonresumeviewer.types;
/*from   www.  j  a  va  2 s  . c  o m*/
import java.util.List;

public class Basics{
     private String email;
     private String label;
     private Location location;
     private String name;
     private String phone;
     private String picture;
     private List<Profiles> profiles;
     private String summary;
     private String website;

    @Override
    public String toString() {
        return "Basics{" +
                "email='" + email + '\'' +
                ", label='" + label + '\'' +
                ", location=" + location +
                ", name='" + name + '\'' +
                ", phone='" + phone + '\'' +
                ", picture='" + picture + '\'' +
                ", profiles=" + getProfilesListTextually() + '\'' +
                ", summary='" + summary + '\'' +
                ", website='" + website + '\'' +
                '}';
    }

    public String getProfilesListTextually() {
        String ret = "";

        if(profiles != null) {
            for (Profiles profile : profiles) {
                ret += (profile.toString() + "," + '\'');
            }
        }

        return ret;
    }

   public String getEmail(){
    return this.email;
  }
  public void setEmail(String email){
    this.email = email;
  }
   public String getLabel(){
    return this.label;
  }
  public void setLabel(String label){
    this.label = label;
  }
   public Location getLocation(){
    return this.location;
  }
  public void setLocation(Location location){
    this.location = location;
  }
   public String getName(){
    return this.name;
  }
  public void setName(String name){
    this.name = name;
  }
   public String getPhone(){
    return this.phone;
  }
  public void setPhone(String phone){
    this.phone = phone;
  }
   public String getPicture(){
    return this.picture;
  }
  public void setPicture(String picture){
    this.picture = picture;
  }
   public List getProfiles(){
    return this.profiles;
  }
  public void setProfiles(List profiles){
    this.profiles = profiles;
  }
   public String getSummary(){
    return this.summary;
  }
  public void setSummary(String summary){
    this.summary = summary;
  }
   public String getWebsite(){
    return this.website;
  }
  public void setWebsite(String website){
    this.website = website;
  }
}




Java Source Code List

com.hunterdavis.jsonresumeviewer.IconDownloadTask.java
com.hunterdavis.jsonresumeviewer.JsonResumeActivity.java
com.hunterdavis.jsonresumeviewer.JsonResumeParser.java
com.hunterdavis.jsonresumeviewer.ResumePagerAdapter.java
com.hunterdavis.jsonresumeviewer.ResumeSections.java
com.hunterdavis.jsonresumeviewer.fragment.AwardsFragment.java
com.hunterdavis.jsonresumeviewer.fragment.BasicsResumeFragment.java
com.hunterdavis.jsonresumeviewer.fragment.EducationFragment.java
com.hunterdavis.jsonresumeviewer.fragment.InterestsFragment.java
com.hunterdavis.jsonresumeviewer.fragment.LanguagesFragment.java
com.hunterdavis.jsonresumeviewer.fragment.ProfileFragment.java
com.hunterdavis.jsonresumeviewer.fragment.PublicationsFragment.java
com.hunterdavis.jsonresumeviewer.fragment.ReferencesFragment.java
com.hunterdavis.jsonresumeviewer.fragment.SkillsFragment.java
com.hunterdavis.jsonresumeviewer.fragment.TextResumeFragment.java
com.hunterdavis.jsonresumeviewer.fragment.VolunteerFragment.java
com.hunterdavis.jsonresumeviewer.fragment.WorkFragment.java
com.hunterdavis.jsonresumeviewer.types.Awards.java
com.hunterdavis.jsonresumeviewer.types.Basics.java
com.hunterdavis.jsonresumeviewer.types.Education.java
com.hunterdavis.jsonresumeviewer.types.Interests.java
com.hunterdavis.jsonresumeviewer.types.Languages.java
com.hunterdavis.jsonresumeviewer.types.Location.java
com.hunterdavis.jsonresumeviewer.types.Profiles.java
com.hunterdavis.jsonresumeviewer.types.Publications.java
com.hunterdavis.jsonresumeviewer.types.References.java
com.hunterdavis.jsonresumeviewer.types.Resume.java
com.hunterdavis.jsonresumeviewer.types.Skills.java
com.hunterdavis.jsonresumeviewer.types.Volunteer.java
com.hunterdavis.jsonresumeviewer.types.Work.java