If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > General > Chit Chat > aspect-oriented programming (AOP)

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 04-08-04, 22:15
! ! ! ! is offline
Registered User
 
Join Date: Feb 2004
Posts: 6
Arrow aspect-oriented programming (AOP)

http://www.ftponline.com/special/ops...default_pf.asp


Quote:
How does AOP let you change an application's behavior without editing source code? The short answer is that the AOP implementations combine aspects and existing code to add new behavior to an application. They include a software component that weaves aspects and application code into an executable that embodies the behaviors defined in the aspects. Either a compiler or classloader can perform this weaver function. Different implementations interlace aspects and application code in different ways,...

AOP is a programming technique that modularizes concerns (areas of interest or requirements) that cut across a system and are common to many modules. These modules, called aspects, associate pointcuts and advices. Pointcuts identify joinpoints, which are well-defined points in the flow of execution such as a method call or data variable access. Advices, which are associated with specific pointcuts, specify the code to execute at a joinpoint. Put another way, a pointcut declares an event and an advice declares an action to be performed when an event fires

Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On