Attribute-oriented programming


Attribute-oriented programming is a program-level marking technique. Programmers can mark program elements to indicate that they maintain application-specific or domain-specific semantics. For example, some programmers may define a "logging" attribute and associate it with a method to indicate the method should implement a logging function, while other programmers may define a "web service" attribute and associate it with a class to indicate the class should be implemented as a web service. Attributes separate application's core logic from application-specific or domain-specific semantics. By hiding the implementation details of those semantics from program code, attributes increase the level of programming abstraction and reduce programming complexity, resulting in simpler and more readable programs. The program elements associated with attributes are transformed to more detailed programs by a supporting tool. For example, a preprocessor may insert a logging program into the methods associated with a "logging" attribute.

Attribute-oriented programming in various languages

Java

With the inclusion of The Metadata Facility for the Java Programming Language into the J2SE 5.0 release it is possible to utilize attribute-oriented programming right out of the box.
XDoclet library makes it possible to use attribute-oriented programming approach in earlier versions of Java.

C#

The C# language has supported attributes from its very first release. However these attributes are used to give run-time information and are not used by a pre-processor.

UML

The Unified Modeling Language supports a kind of attribute named Stereotypes.

Hack

The Hack programming language supports attributes. Attributes can be attached to various program entities, and information about those attributes can be retrieved at run-time via reflection.

Tools