Beispiel #1
0
 public Author(Author other) {
   this.id = other.getId();
   this.link = other.getLink();
   this.fullName = other.getFullName();
   this.shortName = other.getShortName();
   this.email = other.getEmail();
   this.annotation = other.getAnnotation();
   this.gender = other.getGender();
   this.dateBirth = other.getDateBirth();
   this.address = other.getAddress();
   this.site = other.getSite();
   this.hasAvatar = other.isHasAbout();
   this.hasAbout = other.isHasAbout();
   this.hasUpdates = other.isHasUpdates();
   this.lastUpdateDate = other.getLastUpdateDate();
   this.newest = other.isNewest();
   this.size = other.getSize();
   this.workCount = other.getWorkCount();
   this.rate = other.getRate();
   this.kudoed = other.getKudoed();
   this.views = other.getViews();
   this.about = other.getAbout();
   this.sectionAnnotation = other.sectionAnnotation;
   this.recommendations = other.getRecommendations();
   this.categories = other.getCategories();
   this.rootLinks = other.getRootLinks();
   this.rootWorks = other.getRootWorks();
   this.friendList = other.getFriendList();
   this.friendOfList = other.getFriendOfList();
   this.friends = other.getFriends();
   this.friendsOf = other.getFriendsOf();
   this.parsed = other.isParsed();
 }