Source Code Cross Referenced for FormNames.java in  » Portal » Open-Portal » com » sun » portal » rssportlet » 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 » Portal » Open Portal » com.sun.portal.rssportlet 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /**
002:         * $Id: FormNames.java,v 1.1 2006/04/13 17:57:11 jtb Exp $
003:         * Copyright 2004 Sun Microsystems, Inc. All
004:         * rights reserved. Use of this product is subject
005:         * to license terms. Federal Acquisitions:
006:         * Commercial Software -- Government Users
007:         * Subject to Standard License Terms and
008:         * Conditions.
009:         *
010:         * Sun, Sun Microsystems, the Sun logo, and Sun ONE
011:         * are trademarks or registered trademarks of Sun Microsystems,
012:         * Inc. in the United States and other countries.
013:         */package com.sun.portal.rssportlet;
014:
015:        /**
016:         * This class provides helper constants for use within the Rss Portlet JSPs.
017:         *
018:         * There are several categories of constants:
019:         * <ul>
020:         * <li> Markup element names
021:         * <li> Portlet preference names
022:         * <li> Error parameter names
023:         * </ul>
024:         * <p>
025:         * If the portlet's JSPs are customized, it is important to use the
026:         * constant markup element names specified in this interface. If these
027:         * constants are not used, the portlet cannot process form submissions,
028:         * and Javascript in the JSPs may fail.
029:         * </p>
030:         * <p>
031:         * Portlet preference name constants are provided for convenience
032:         * as the JSPs read the preferences when rendering the portlet.
033:         * </p>
034:         * <p>
035:         * Error parameters are used to pass error information between the
036:         * portlet class and the edit JSP. Error parameters are set as
037:         * portlet render parameters. The existence or non-existence of
038:         * the error parameter is a flag indicating if the error occured.
039:         * The value of the error parameter may simply be "true",
040:         * or it may include some information about the error. See descriptions
041:         * of the error parameters for details.
042:         * </p>
043:         * <p>
044:         * <b>This API is unstable and changing.</b>
045:         * </p>
046:         */
047:
048:        public interface FormNames {
049:            /**
050:             * Markup element name of the select feed drop down list in
051:             * the portlet's view mode.
052:             */
053:            public static final String INPUT_SELECT_FEED = "selectFeed";
054:
055:            /**
056:             * Markup element name of the feeds check box group
057:             * in the portlet's edit mode.
058:             */
059:            public static final String INPUT_FEEDS = "feeds";
060:
061:            /**
062:             * Markup element name of the "add feed" button in the portlet's
063:             * edit mode.
064:             */
065:            public static final String INPUT_ADD_FEED = "inputAddFeed";
066:
067:            /**
068:             * Markup element name of the "maximum feed age" text box
069:             * in the portlet's edit mode
070:             */
071:            public static final String INPUT_MAX_AGE = "inputMaxAge";
072:
073:            /**
074:             * Markup element name of the "new window" check box in the
075:             * portlet's edit mode.
076:             */
077:            public static final String INPUT_NEWWIN = "inputNewWindow";
078:
079:            /**
080:             * Markup element name for the "maximum entries" text box in the
081:             * portlet's edit mode.
082:             **/
083:            public static final String INPUT_MAX_ENTRIES = "inputMaxEntries";
084:
085:            /**
086:             ** Markup element name for the "disable maximum feed age"
087:             * check box in the portlet's edit mode.
088:             */
089:            public static final String INPUT_DISABLE_MAX_AGE = "disableMaxAge";
090:
091:            /**
092:             * Markup element name for the "start feed" drop down list in the
093:             * portlet's edit mode.
094:             */
095:            public static final String INPUT_START_FEED = "showAllEntries";
096:
097:            /**
098:             * Markup element name for the "add new feed" submit button
099:             * in the portlet's edit mode.
100:             */
101:            public static final String SUBMIT_ADD = "submitAdd";
102:
103:            /**
104:             * Markup element name for the "finished" button in the
105:             * portlet's edit mode.
106:             */
107:            public static final String SUBMIT_EDIT = "submitEdit";
108:
109:            /** Markup element for the "cancel" button. */
110:            public static final String SUBMIT_CANCEL = "submitCancel";
111:
112:            /**
113:             * Markup element name for the "go" button in the
114:             * portlet's view mode.
115:             */
116:            public static final String SUBMIT_GO = "submitGo";
117:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.