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

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