*
* @return Instance from this application
*/
- public static final FrameworkInterface getInstance () {
+ public static FrameworkInterface getInstance () {
// Return it
return selfInstance;
}
@Override
- public final Application getApplication () {
+ public Application getApplication () {
return this.application;
}
*
* @return Logger instance
*/
- protected final Logger getLogger () {
+ protected Logger getLogger () {
return this.LOG;
}
@Override
- public final Manageable getManager () {
+ public Manageable getManager () {
return this.manager;
}
@Override
- public final String getMessageStringFromKey (final String key) {
+ public String getMessageStringFromKey (final String key) {
// Return message
return this.getBundle().getString(key);
}
*
* @param throwable Any type of Throwable
*/
- protected final void abortProgramWithException (final Throwable throwable) {
+ protected void abortProgramWithException (final Throwable throwable) {
// Log exception ...
this.logException(throwable);
*
* @param application the application to set
*/
- protected final void setApplication (final Application application) {
+ protected void setApplication (final Application application) {
this.application = application;
}
@Override
- public final Client getClient () {
+ public Client getClient () {
return this.client;
}
*
* @return Resource bundle
*/
- protected final ResourceBundle getBundle () {
+ protected ResourceBundle getBundle () {
return BaseFrameworkSystem.bundle;
}
*
* @param client the client to set
*/
- protected final void setClient (final Client client) {
+ protected void setClient (final Client client) {
this.client = client;
}
@Override
- public final void logException (final Throwable exception) {
+ public void logException (final Throwable exception) {
// Log this exception
this.getLogger().catching(exception);
}
*
* @param manager the manager instance to set
*/
- protected final void setManager (final Manageable manager) {
+ protected void setManager (final Manageable manager) {
this.manager = manager;
}
*
* @return Contact instance
*/
- protected final Contact getContact () {
+ protected Contact getContact () {
return this.contact;
}
*
* @param contact A Contact instance
*/
- protected final void setContact (final Contact contact) {
+ protected void setContact (final Contact contact) {
this.contact = contact;
}
* @param birthday the birthday to set
*/
@Override
- public final void setBirthday (final String birthday) {
+ public void setBirthday (final String birthday) {
this.birthday = birthday;
}
* @return the cellphoneNumber
*/
@Override
- public final String getCellphoneNumber () {
+ public String getCellphoneNumber () {
return this.cellphoneNumber;
}
* @param cellphoneNumber the cellphoneNumber to set
*/
@Override
- public final void setCellphoneNumber (final String cellphoneNumber) {
+ public void setCellphoneNumber (final String cellphoneNumber) {
this.cellphoneNumber = cellphoneNumber;
}
* @param city the city to set
*/
@Override
- public final void setCity (final String city) {
+ public void setCity (final String city) {
this.city = city;
}
* @param comment the comment to set
*/
@Override
- public final void setComment (final String comment) {
+ public void setComment (final String comment) {
this.comment = comment;
}
* @param companyName the companyName to set
*/
@Override
- public final void setCompanyName (final String companyName) {
+ public void setCompanyName (final String companyName) {
this.companyName = companyName;
}
* @return the contactId
*/
@Override
- public final Long getContactId () {
+ public Long getContactId () {
return this.contactId;
}
* @param contactId the contactId to set
*/
@Override
- public final void setContactId (final Long contactId) {
+ public void setContactId (final Long contactId) {
this.contactId = contactId;
}
* @param countryCode the countryCode to set
*/
@Override
- public final void setCountryCode (final String countryCode) {
+ public void setCountryCode (final String countryCode) {
this.countryCode = countryCode;
}
* @param emailAddress the emailAddress to set
*/
@Override
- public final void setEmailAddress (final String emailAddress) {
+ public void setEmailAddress (final String emailAddress) {
this.emailAddress = emailAddress;
}
* @param familyName the familyName to set
*/
@Override
- public final void setFamilyName (final String familyName) {
+ public void setFamilyName (final String familyName) {
/* NOISY-DEBUG: */ this.getLogger().trace(MessageFormat.format("familyName={0} - CALLED!", familyName)); //NOI18N
this.familyName = familyName;
}
* @param faxNumber the faxNumber to set
*/
@Override
- public final void setFaxNumber (final String faxNumber) {
+ public void setFaxNumber (final String faxNumber) {
this.faxNumber = faxNumber;
}
* @return the firstName
*/
@Override
- public final String getFirstName () {
+ public String getFirstName () {
return this.firstName;
}
* @param firstName the firstName to set
*/
@Override
- public final void setFirstName (final String firstName) {
+ public void setFirstName (final String firstName) {
this.firstName = firstName;
}
* @param gender the gender to set
*/
@Override
- public final void setGender (final Gender gender) {
+ public void setGender (final Gender gender) {
this.gender = gender;
}
* @param houseNumber the houseNumber to set
*/
@Override
- public final void setHouseNumber (final Long houseNumber) {
+ public void setHouseNumber (final Long houseNumber) {
this.houseNumber = houseNumber;
}
* @param phoneNumber the phoneNumber to set
*/
@Override
- public final void setPhoneNumber (final String phoneNumber) {
+ public void setPhoneNumber (final String phoneNumber) {
this.phoneNumber = phoneNumber;
}
* @param street the street to set
*/
@Override
- public final void setStreet (final String street) {
+ public void setStreet (final String street) {
this.street = street;
}
* @return the zipCode
*/
@Override
- public final Long getZipCode () {
+ public Long getZipCode () {
return this.zipCode;
}
* @param zipCode the zipCode to set
*/
@Override
- public final void setZipCode (final Long zipCode) {
+ public void setZipCode (final Long zipCode) {
this.zipCode = zipCode;
}
* @return Own data?
*/
@Override
- public final boolean isOwnContact () {
+ public boolean isOwnContact () {
return this.ownContact;
}
* Enables the flag "own data" which signals that this contact is the user's
* own data.
*/
- protected final void enableFlagOwnContact () {
+ protected void enableFlagOwnContact () {
this.ownContact = true;
}