DOORS Extension Language
An editor has nominated this article for deletion. You are welcome to participate in the deletion discussion, which will decide whether or not to retain it. |
![]() | This article has multiple issues. Please help improve it or discuss these issues on the talk page. (Learn how and when to remove these messages)
|
DOORS eXtension Language (also known as DXL), is a scripting language used to extend the functionality of IBM's Rational DOORS. This programming language is somewhat similar to C and C++. This language is specific to DOORS, and it has its own syntax, declaration, a forum to discuss the development,[1] in addition to the specific reference manuals.[2] StackOverFlow also provides support for this DXL scripting language.[3]
DXL Script Extensions
DXL scripts are usually stored with extension of ".dxl", however they do use the library files with extension ".inc".
DXL Editors
Sodius DXL Editor,[4] which is built on top of Eclipse is one of the tool which provides option to edit, browse, compile, execute, and debug DXL scripts. There are many open source and free editors like Notepad++, jEdit support DXL by custom properties.[5]
"Hello, world" example
To print the "Hello, World", the following code will be used,
print "Hello, world"