Source Code Cross Referenced for UpdateProcessAttributesMetaData.java in  » Workflow-Engines » obe-1.0 » org » obe » client » api » repository » 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 » Workflow Engines » obe 1.0 » org.obe.client.api.repository 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        package org.obe.client.api.repository;
002:
003:        import org.obe.xpdl.model.data.ExternalReference;
004:        import org.xml.sax.EntityResolver;
005:
006:        /**
007:         * @author Adrian Price
008:         */
009:        public class UpdateProcessAttributesMetaData extends ToolAgentMetaData {
010:            private static final long serialVersionUID = -3003775733188776748L;
011:            private static final String IMPL_CLASS = "org.obe.runtime.tool.UpdateProcessAttributes";
012:            private static final String[] IMPL_CTOR_SIG = { UpdateProcessAttributesMetaData.class
013:                    .getName() };
014:            private int _height;
015:            private int _width;
016:            private boolean _status;
017:            private boolean _toolbar;
018:            private boolean _menubar;
019:            private boolean _location;
020:            private boolean _scrollbars;
021:            private String _title;
022:
023:            public UpdateProcessAttributesMetaData() {
024:            }
025:
026:            public UpdateProcessAttributesMetaData(String id,
027:                    String displayName, String description, String docUrl,
028:                    String author, boolean threadsafe) {
029:
030:                super (id, displayName, description, docUrl, author, threadsafe);
031:            }
032:
033:            public ToolAgentMetaData introspect(ExternalReference extRef,
034:                    EntityResolver entityResolver) throws RepositoryException {
035:
036:                return null;
037:            }
038:
039:            public String getTitle() {
040:                return _title != null ? _title : _type == null
041:                        || !allowInheritance ? null
042:                        : ((UpdateProcessAttributesMetaData) _type).getTitle();
043:            }
044:
045:            public void setTitle(String title) {
046:                _title = title;
047:            }
048:
049:            public int getHeight() {
050:                return _height == 0 ? _type == null || !allowInheritance ? 0
051:                        : ((UpdateProcessAttributesMetaData) _type).getHeight()
052:                        : _height;
053:            }
054:
055:            public void setHeight(int height) {
056:                _height = height;
057:            }
058:
059:            public int getWidth() {
060:                return _width == 0 ? _type == null || !allowInheritance ? 0
061:                        : ((UpdateProcessAttributesMetaData) _type).getWidth()
062:                        : _width;
063:            }
064:
065:            public void setWidth(int width) {
066:                _width = width;
067:            }
068:
069:            public boolean getStatus() {
070:                return _status;
071:            }
072:
073:            public void setStatus(boolean status) {
074:                _status = status;
075:            }
076:
077:            public boolean getToolbar() {
078:                return _toolbar;
079:            }
080:
081:            public void setToolbar(boolean toolbar) {
082:                _toolbar = toolbar;
083:            }
084:
085:            public boolean getMenubar() {
086:                return _menubar;
087:            }
088:
089:            public void setMenubar(boolean menubar) {
090:                _menubar = menubar;
091:            }
092:
093:            public boolean getLocation() {
094:                return _location;
095:            }
096:
097:            public void setLocation(boolean location) {
098:                _location = location;
099:            }
100:
101:            public boolean getScrollbars() {
102:                return _scrollbars;
103:            }
104:
105:            public void setScrollbars(boolean scrollbars) {
106:                _scrollbars = scrollbars;
107:            }
108:
109:            protected String getImplClass() {
110:                return IMPL_CLASS;
111:            }
112:
113:            protected String[] getImplCtorSig() {
114:                return IMPL_CTOR_SIG;
115:            }
116:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.