Source Code Cross Referenced for GruntspudCVSAdapter.java in  » Source-Control » gruntspud » gruntspud » event » 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 » Source Control » gruntspud » gruntspud.event 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * Created on 23-Apr-2003
003:         *
004:         * To change this generated comment go to 
005:         * Window>Preferences>Java>Code Generation>Code and Comments
006:         */
007:        package gruntspud.event;
008:
009:        import java.awt.Component;
010:
011:        import org.netbeans.lib.cvsclient.command.Command;
012:        import org.netbeans.lib.cvsclient.event.FileAddedEvent;
013:        import org.netbeans.lib.cvsclient.event.FileInfoEvent;
014:        import org.netbeans.lib.cvsclient.event.FileRemovedEvent;
015:        import org.netbeans.lib.cvsclient.event.FileUpdatedEvent;
016:        import org.netbeans.lib.cvsclient.event.MessageEvent;
017:        import org.netbeans.lib.cvsclient.event.ModuleExpansionEvent;
018:        import org.netbeans.lib.cvsclient.event.TerminationEvent;
019:
020:        /**
021:         * @author BRETTS
022:         *
023:         * To change this generated comment go to 
024:         * Window>Preferences>Java>Code Generation>Code and Comments
025:         */
026:        public abstract class GruntspudCVSAdapter implements 
027:                GruntspudCVSListener {
028:
029:            /* (non-Javadoc)
030:             * @see gruntspud.event.GruntspudCVSListener#getShortName()
031:             */
032:            public abstract String getShortName();
033:
034:            /* (non-Javadoc)
035:             * @see gruntspud.event.GruntspudCVSListener#isOptionalListener()
036:             */
037:            public boolean isOptionalListener() {
038:                // TODO Auto-generated method stub
039:                return false;
040:            }
041:
042:            /* (non-Javadoc)
043:             * @see gruntspud.event.GruntspudCVSListener#commandGroupStarted(org.netbeans.lib.cvsclient.command.Command[])
044:             */
045:            public void commandGroupStarted(Command[] command) {
046:                // TODO Auto-generated method stub
047:
048:            }
049:
050:            /* (non-Javadoc)
051:             * @see gruntspud.event.GruntspudCVSListener#init(java.awt.Component)
052:             */
053:            public void init(Component parent) {
054:                // TODO Auto-generated method stub
055:
056:            }
057:
058:            /* (non-Javadoc)
059:             * @see gruntspud.event.GruntspudCVSListener#commandGroupFinished()
060:             */
061:            public void commandGroupFinished() {
062:                // TODO Auto-generated method stub
063:
064:            }
065:
066:            /* (non-Javadoc)
067:             * @see gruntspud.event.GruntspudCVSListener#commandUnitStarted(org.netbeans.lib.cvsclient.command.Command)
068:             */
069:            public void commandUnitStarted(Command command) {
070:                // TODO Auto-generated method stub
071:
072:            }
073:
074:            /* (non-Javadoc)
075:             * @see gruntspud.event.GruntspudCVSListener#commandUnitFinished()
076:             */
077:            public void commandUnitFinished() {
078:                // TODO Auto-generated method stub
079:
080:            }
081:
082:            /* (non-Javadoc)
083:             * @see gruntspud.event.GruntspudCVSListener#commandException(java.lang.Throwable)
084:             */
085:            public void commandException(Throwable t) {
086:                // TODO Auto-generated method stub
087:
088:            }
089:
090:            /* (non-Javadoc)
091:             * @see org.netbeans.lib.cvsclient.event.CVSListener#messageSent(org.netbeans.lib.cvsclient.event.MessageEvent)
092:             */
093:            public void messageSent(MessageEvent arg0) {
094:                // TODO Auto-generated method stub
095:
096:            }
097:
098:            /* (non-Javadoc)
099:             * @see org.netbeans.lib.cvsclient.event.CVSListener#fileAdded(org.netbeans.lib.cvsclient.event.FileAddedEvent)
100:             */
101:            public void fileAdded(FileAddedEvent arg0) {
102:                // TODO Auto-generated method stub
103:
104:            }
105:
106:            /* (non-Javadoc)
107:             * @see org.netbeans.lib.cvsclient.event.CVSListener#fileRemoved(org.netbeans.lib.cvsclient.event.FileRemovedEvent)
108:             */
109:            public void fileRemoved(FileRemovedEvent arg0) {
110:                // TODO Auto-generated method stub
111:
112:            }
113:
114:            /* (non-Javadoc)
115:             * @see org.netbeans.lib.cvsclient.event.CVSListener#fileUpdated(org.netbeans.lib.cvsclient.event.FileUpdatedEvent)
116:             */
117:            public void fileUpdated(FileUpdatedEvent arg0) {
118:                // TODO Auto-generated method stub
119:
120:            }
121:
122:            /* (non-Javadoc)
123:             * @see org.netbeans.lib.cvsclient.event.CVSListener#fileInfoGenerated(org.netbeans.lib.cvsclient.event.FileInfoEvent)
124:             */
125:            public void fileInfoGenerated(FileInfoEvent arg0) {
126:                // TODO Auto-generated method stub
127:
128:            }
129:
130:            /* (non-Javadoc)
131:             * @see org.netbeans.lib.cvsclient.event.CVSListener#commandTerminated(org.netbeans.lib.cvsclient.event.TerminationEvent)
132:             */
133:            public void commandTerminated(TerminationEvent arg0) {
134:                // TODO Auto-generated method stub
135:
136:            }
137:
138:            /* (non-Javadoc)
139:             * @see org.netbeans.lib.cvsclient.event.CVSListener#moduleExpanded(org.netbeans.lib.cvsclient.event.ModuleExpansionEvent)
140:             */
141:            public void moduleExpanded(ModuleExpansionEvent arg0) {
142:                // TODO Auto-generated method stub
143:
144:            }
145:
146:            /* (non-Javadoc)
147:             * @see gruntspud.event.GruntspudCVSListener#isSelectedByDefault()
148:             */
149:            public boolean isSelectedByDefault() {
150:                return true;
151:            }
152:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.