Change Getxxx() and Setxxx() methods to .NET Properties
-------------------------------------------------------

                 Key: LUCENENET-470
                 URL: https://issues.apache.org/jira/browse/LUCENENET-470
             Project: Lucene.Net
          Issue Type: Sub-task
          Components: Lucene.Net Contrib, Lucene.Net Core
    Affects Versions: Lucene.Net 2.9.4, Lucene.Net 3.0.3, Lucene.Net 2.9.4g
         Environment: all
            Reporter: Christopher Currens
             Fix For: Lucene.Net 3.0.3


We should use .NET properties where ever possible.  There are many methods in 
the API that use methods similar to {{Class.Getxxxxx()}} or 
{{Class.Setxxxxx()}}.  These methods often just return a less-accessible field, 
with no real logic behind it.

* If there are both public Get/Set methods with no special logic, they can be 
turned into an automatic property: Name { get; set; }
* If there are both Get/Set methods with no special logic and the setter is 
private, use an automatic property: Name { get; private set; }
* In other cases, use good judgement based with the amount of logic that is 
present in the getter and setter methods.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to