Re: Refactoring

2023-08-21 Thread Chris Olsen
Alonso and All -- What has helped me immensely to understand this subject is Fowler, M. (2019). Refactoring: Improving the Design of Existing Code (2nd). -- Chris - Original Message - From: "Alonso Del Arte" To: "NetBeans Mailing List" Sent: Monday, August 21, 2023 5:47:41 PM Su

Re: Refactoring

2023-08-21 Thread Alonso Del Arte
Refactoring usually involves making multiple changes in multiple files. For example, in a Java project, say you decide to rename the MoneyAmount class to just Money. If that class is referenced by a dozen other classes and interfaces, then the change will impact at least a dozen lines in other clas

Re: Refactoring

2023-08-21 Thread Owen Thomas
Hi Tom. Refactoring is simply moving stuff around in your source code without making any (major) change to the functionality of your program. You may want to do this when for instance you are preparing to implement a functional enhancement that makes use of a particular design pattern, and your s

Refactoring

2023-08-21 Thread Tom Rushworth
Newbie question.  I'm working on an HTML project.  When I change a file name, Netbeans wants to know if I want to "refactor" or not. What does it mean to refactor? - To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.or