Source Code Cross Referenced for XMLConstants.java in  » Testing » abbot-1.0.1 » abbot » script » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Testing » abbot 1.0.1 » abbot.script 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        package abbot.script;
02:
03:        /** Attributes used by script steps and component references.  Any entries
04:         here should have a corresponding entry to the
05:         <a href="doc-files/abbot.xsd">XML schema</a> file.  See that
06:         file for appropriate XML usage.
07:         */
08:        public interface XMLConstants {
09:            /** Primary document tag for a test script. */
10:            String TAG_AWTTESTSCRIPT = "AWTTestScript";
11:            String TAG_LAUNCH = "launch";
12:            /** @deprecated */
13:            String TAG_DELEGATE = "delegate";
14:            String TAG_CLASSPATH = "classpath";
15:            String TAG_THREADED = "threaded";
16:            String TAG_APPLETVIEWER = "appletviewer";
17:            String TAG_CODE = "code";
18:            String TAG_CODEBASE = "codebase";
19:            String TAG_ARCHIVE = "archive";
20:            String TAG_TERMINATE = "terminate";
21:            String TAG_COMPONENT = "component";
22:            String TAG_ID = "id";
23:            String TAG_NAME = "name";
24:            String TAG_WEIGHTED = "weighted";
25:            String TAG_WINDOW = "window";
26:            /** Title of a Frame, Dialog or JInternalFrame.  Any other use is
27:                deprecated (i.e. Title of window ancestor).
28:             */
29:            String TAG_TITLE = "title";
30:            String TAG_BORDER_TITLE = "borderTitle";
31:            String TAG_ROOT = "root";
32:            String TAG_PARENT = "parent";
33:            String TAG_INDEX = "index";
34:            String TAG_CLASS = "class";
35:            String TAG_TAG = "tag";
36:            String TAG_LABEL = "label";
37:            String TAG_TEXT = "text";
38:            String TAG_ICON = "icon";
39:            String TAG_INVOKER = "invoker";
40:            String TAG_HORDER = "hOrder";
41:            String TAG_VORDER = "vOrder";
42:            String TAG_PARAMS = "params";
43:            String TAG_DOCBASE = "docBase";
44:            String TAG_EVENT = "event";
45:            String TAG_SEQUENCE = "sequence";
46:            String TAG_TYPE = "type";
47:            String TAG_KIND = "kind";
48:            String TAG_X = "x";
49:            String TAG_Y = "y";
50:            String TAG_WIDTH = "width";
51:            String TAG_HEIGHT = "height";
52:            String TAG_MODIFIERS = "modifiers";
53:            String TAG_COUNT = "count";
54:            String TAG_TRIGGER = "trigger";
55:            String TAG_KEYCODE = "keyCode";
56:            String TAG_KEYCHAR = "keyChar";
57:            String TAG_ACTION = "action";
58:            String TAG_ASSERT = "assert";
59:            String TAG_CALL = "call";
60:            String TAG_SAMPLE = "sample";
61:            String TAG_PROPERTY = "property";
62:            String TAG_FIXTURE = "fixture";
63:            String TAG_SCRIPT = "script";
64:            String TAG_FILENAME = "filename";
65:            String TAG_FORKED = "forked";
66:            String TAG_SLOW = "slow";
67:            String TAG_AWT = "awt";
68:            String TAG_VMARGS = "vmargs";
69:            String TAG_WAIT = "wait";
70:            String TAG_EXPR = "expr";
71:            String TAG_METHOD = "method";
72:            String TAG_ARGS = "args";
73:            String TAG_VALUE = "value";
74:            String TAG_DESC = "desc";
75:            String TAG_INVERT = "invert";
76:            String TAG_TIMEOUT = "timeout";
77:            String TAG_POLL_INTERVAL = "pollInterval";
78:            String TAG_STOP_ON_FAILURE = "stopOnFailure";
79:            String TAG_STOP_ON_ERROR = "stopOnError";
80:            // this is not actually used as a tag per se
81:            String TAG_COMMENT = "comment";
82:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.