Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 76173
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T20:37:55+00:00 2026-05-10T20:37:55+00:00

Is it necessary for setter methods to have one argument? Usually setter methods accept

  • 0

Is it necessary for setter methods to have one argument? Usually setter methods accept one argument as the value of a certain property of an Object. What if I want to test first the validity which depends on another argument which is a boolean, if true, validate first, else just set the value.

I am getting the values from clients through ftp server. Sometimes those files contain garbage values. For instance, a phone number like #3432838#9. So before I set the value I need to remove those garbage characters. Can I do it in the setter methods? Is it a valid approach?

Thanks a bunch in advance!

EDIT:

Is this valid:

public void setSomething(String strValue){       if(checkValidity(strValue)){           // set the value       } else {           // set the value to an empty string      }     } 
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T20:37:55+00:00Added an answer on May 10, 2026 at 8:37 pm

    It is necessary specifically in the java bean framework model, but it s not mandatory in general.

    You can have setter with no argument when they are meant to ‘swith’ a value.

    void setCheck() 

    could for instance be meant to set the ‘check’ boolean attribute to true.

    So even if it is not a ‘setter’ in the java bean sense of the term, you can imagine setter used for other purposes.

    Plus, according to section 7 of JavaBean specifications, a setter can have more than one argument, for instance for Indexed properties (An indexed property supports a range of values. Whenever the property is read or written you just specify an index to identify which value you want.)

    void setter(int index, PropertyType value); // indexed setter void setter(PropertyType values[]); // array setter 

    In your case, a valid approach would be to add a runtime exception to the signature of our function.
    That way you do not put any unnecessary compilation-time exception checking for all of the other classes which are already calling your setter.

    Or you could consider your property as a Constrained property and add a non-runtime exception.

    Constrained property setter methods are required to support the PropertyVetoException. This documents to the users of the constrained property that attempted updates may be vetoed. So a simple constrained property might look like:

    PropertyType getFoo(); void setFoo(PropertyType value) throws PropertyVetoException; 

    which allows for VetoableChangeListener to be added if needed.


    Regarding your snippet, it is ‘valid’ but may not be optimal because (as said in this question):

    • Validation should be captured separately from getters or setters in a validation method. That way if the validation needs to be reused across multiple components, it is available.
    • It is better to fail fast (hence my proposition to add exception to the setter).
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 95k
  • Answers 95k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Yeah, you don't want to delete your whole DBML file.… May 11, 2026 at 6:57 pm
  • Editorial Team
    Editorial Team added an answer Because velocity is not "length/time". It is the first derivative… May 11, 2026 at 6:57 pm
  • Editorial Team
    Editorial Team added an answer Looks like this is caused by the converter. ObservableCollection implements… May 11, 2026 at 6:57 pm

Related Questions

I'd like to implement the ViewModel part of WPF's MVVM pattern without referencing WPF
I've been looking for a generic way to deal with bidirectional associations and a
Are setters necessary for Collection Type Properties //Type 1 class Company { private IList<Customer>
I'm currently working on a simple game in Java with several different modes. I've

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.