You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

design-overview.adoc 1.8KB

12345678910111213141516171819202122232425262728293031
  1. = AspectJ Design Overview
  2. :doctype: book
  3. :leveloffset: +1
  4. Here are some sobering words:
  5. "Although it is essential to upgrade software to prevent aging, changing software can cause a different form of
  6. aging. The designer of a piece of software usually had a simple concept in mind when writing the program. If the
  7. program is large, understanding the concept allows one to find those sections of the program that must be altered
  8. when an update or correction is needed. Understanding that concept also implies understanding the interfaces used
  9. within the system and between the system and its environment. Changes made by people who do not understand the
  10. original design concept almost always cause the structure of the program to degrade. Under those circumstances,
  11. changes will be inconsistent with the original concept; in fact, they will invalidate the original concept. Sometimes
  12. the damage is small, but often it is quite severe. After those changes, one must know both the original design rules
  13. and the newly introduced exceptions to the rules, to understand the product. After many such changes, the original
  14. designers no longer understand the product. Those who made the changes, never did. In other words, *nobody*
  15. understands the modified product." +
  16. +
  17. Software that has been repeatedly modified (maintained) in this way becomes very expensive to update. Changes take
  18. longer and are more likely to introduce new 'bugs'."
  19. -- David Parnas on "Ignorant Surgery" in his paper on Software Aging
  20. ////
  21. ATTENTION: Please do not remove blank lines in between 'include::' statements. Otherwise, section numbers in the
  22. table of contents (TOC) can be wrong and the first section of each document missing completely.
  23. ////
  24. include::compiler-weaver.adoc[Guide for Developers of the AspectJ Compiler and Weaver]
  25. include::modules.adoc[Module Structure]
  26. include::language.adoc[Language Design]