import org.mxchange.addressbook.menu.console.ConsoleMenu;
import org.mxchange.addressbook.menu.item.SelectableMenuItem;
import org.mxchange.addressbook.menu.item.console.ConsoleMenuItem;
-import org.mxchange.addressbook.model.contact.user.UserContact;
import org.mxchange.jcore.application.Application;
import org.mxchange.jcore.exceptions.UnhandledUserChoiceException;
import org.mxchange.jcore.model.contact.Contact;
+import org.mxchange.jcore.model.contact.UserContact;
import org.mxchange.jcore.model.contact.gender.Gender;
import org.mxchange.jcore.model.contact.gender.GenderUtils;
// First ask for gender
Gender gender = manager.enterOwnGender();
- // 2nd for surname
- String surname = manager.enterOwnFirstName();
+ // 2nd for first name
+ String firstName = manager.enterOwnFirstName();
// And 3rd for family name
String familyName = manager.enterOwnFamilyName();
String companyName = manager.enterOwnCompanyName();
// Construct UserContact instance
- Contact contact = new UserContact(gender, surname, familyName, companyName);
+ Contact contact = new UserContact(gender, firstName, familyName, companyName);
// Trace message
this.getLogger().trace(MessageFormat.format("contact={0} - EXIT!", contact)); //NOI18N
+++ /dev/null
-/*
- * Copyright (C) 2015 Roland Haeder
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-package org.mxchange.addressbook.model.contact.book;
-
-import org.mxchange.jcore.model.contact.BaseContact;
-import org.mxchange.jcore.model.contact.Contact;
-
-/**
- * A contact that can be placed into "contact books"
- *
- * @author Roland Haeder
- * @version 0.0
- */
-public class BookContact extends BaseContact implements Contact {
- /**
- * Serial number
- */
- private static final long serialVersionUID = 27_834_738_781L;
-
- /**
- * Default constructor, may only be used from database backend
- */
- public BookContact () {
- }
-
-}
+++ /dev/null
-/*
- * Copyright (C) 2015 Roland Haeder
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-package org.mxchange.addressbook.model.contact.user;
-
-import java.text.MessageFormat;
-import org.mxchange.addressbook.model.contact.book.BookContact;
-import org.mxchange.jcore.model.contact.Contact;
-import org.mxchange.jcore.model.contact.gender.Gender;
-
-/**
- *
- * @author Roland Haeder
- * TODO After a Collection has been used in ContactManager, change to BaseContact
- */
-public class UserContact extends BookContact implements Contact {
- /**
- * Serial number
- */
- private static final long serialVersionUID = 36_725_784_819_501L;
-
- /**
- * Creates own contact entry
- *
- * @param gender Gender to be set
- * @param firstName First name to be set
- * @param familyName Family name to be set
- * @param companyName Company name
- * TODO Add validation of data
- */
- public UserContact (final Gender gender, final String firstName, final String familyName, final String companyName) {
- // Make sure all constructors are called
- this();
-
- // Trace message
- this.getLogger().trace(MessageFormat.format("gender={0},firstName={1},familyName={2},companyName={3} - CALLED!", gender, firstName, familyName, companyName)); //NOI18N
-
- // Update all data
- this.setGender(gender);
- this.setFirstName(firstName);
- this.setFamilyName(familyName);
- this.setCompanyName(companyName);
-
- // Trace message
- this.getLogger().trace("EXIT!"); //NOI18N
- }
-
- /**
- * Default constructor, may only be used from database backend
- */
- public UserContact () {
- this.setOwnContact(Boolean.TRUE);
- }
-}