Source Code Cross Referenced for MethodDef.java in  » Code-Analyzer » checkstyle » com » puppycrawl » tools » checkstyle » checks » usage » transmogrify » 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 » Code Analyzer » checkstyle » com.puppycrawl.tools.checkstyle.checks.usage.transmogrify 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        // Transmogrify License
002:        // 
003:        // Copyright (c) 2001, ThoughtWorks, Inc.
004:        // All rights reserved.
005:        // Redistribution and use in source and binary forms, with or without
006:        // modification, are permitted provided that the following conditions
007:        // are met:
008:        // - Redistributions of source code must retain the above copyright notice,
009:        //   this list of conditions and the following disclaimer.
010:        // - Redistributions in binary form must reproduce the above copyright
011:        // notice, this list of conditions and the following disclaimer in the
012:        // documentation and/or other materials provided with the distribution.
013:        // Neither the name of the ThoughtWorks, Inc. nor the names of its
014:        // contributors may be used to endorse or promote products derived from this
015:        // software without specific prior written permission.
016:        // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
017:        // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
018:        // TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
019:        // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
020:        // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
021:        // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
022:        // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
023:        // OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
024:        // WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
025:        // OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
026:        // ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
027:
028:        package com.puppycrawl.tools.checkstyle.checks.usage.transmogrify;
029:
030:        import java.util.List;
031:        import java.util.Vector;
032:
033:        /**
034:         * <code>MethodDef</code> contains all the pertinent information for
035:         * a method, including return type, formal parameters, and exceptions
036:         * thrown
037:         *
038:         * @see ClassDef
039:         * @see MethodSignature
040:         */
041:        public class MethodDef extends DefaultScope implements  IMethod {
042:
043:            private IClass returnType;
044:            private List exceptions;
045:
046:            private List parameters;
047:
048:            public MethodDef(String name, Scope parentScope, SymTabAST node) {
049:                super (name, parentScope, node);
050:                parameters = new Vector();
051:            }
052:
053:            /**
054:             * Returns the <code>ClassDef</code> for the return type of this method.
055:             *
056:             * @return the <code>ClassDef</code> for the return type of this method
057:             */
058:            public IClass getType() {
059:                return returnType;
060:            }
061:
062:            /**
063:             * Sets the return type of this method.
064:             *
065:             * @param type the <code>ClassDef</code> for the return type
066:             */
067:            public void setType(IClass type) {
068:                returnType = type;
069:            }
070:
071:            /**
072:             * Adds a parameter to the collection of formal parameters
073:             *
074:             * @param parameter the <code>VariableDef</code> to add
075:             */
076:            public void addParameter(VariableDef parameter) {
077:                parameters.add(parameter);
078:                addDefinition(parameter);
079:            }
080:
081:            /**
082:             * Whether this method has the same signature as the given signature.
083:             *
084:             * @param signature the <code>MethodSignature</code> to compare
085:             *
086:             * @return whether the signatures are equal
087:             */
088:            public boolean hasSameSignature(ISignature signature) {
089:                return getSignature().equals(signature);
090:            }
091:
092:            /**
093:             * Whether this method has a signature compatible with the given signature.
094:             *
095:             * @param signature the signature being compared
096:             * @return whether the signatures are compatible
097:             */
098:            public boolean hasCompatibleSignature(ISignature signature) {
099:                return signature.isCompatibleWith(getSignature());
100:            }
101:
102:            /**
103:             * Returns the signature of this method.
104:             *
105:             * @return the signature of this method
106:             */
107:            public ISignature getSignature() {
108:                Vector argTypes = new Vector();
109:
110:                for (int i = 0; i < parameters.size(); i++) {
111:                    argTypes.add(getParameterAt(i).getType());
112:                }
113:
114:                return new MethodSignature(argTypes);
115:            }
116:
117:            /**
118:             * Gets the <i>i</i>th parameter of this method
119:             *
120:             * @param i the index of the parameter
121:             *
122:             * @return the <code>VariableDef</code> of the <i>i</i>th parameter
123:             */
124:            private VariableDef getParameterAt(int i) {
125:                return (VariableDef) (parameters.get(i));
126:            }
127:
128:            /**
129:             * Adds an exception that this method throws.
130:             *
131:             * @param exception the exception to add
132:             */
133:            public void addException(IClass exception) {
134:                if (exceptions == null) {
135:                    exceptions = new Vector();
136:                }
137:
138:                exceptions.add(exception);
139:            }
140:
141:            /**
142:             * Returns the exceptions this method throws
143:             *
144:             * @return the exceptions this method throws
145:             */
146:            public IClass[] getExceptions() {
147:                return (IClass[]) exceptions.toArray(new IClass[0]);
148:            }
149:
150:            public String getQualifiedName() {
151:                return super.getQualifiedName() + getSignature();
152:            }
153:        }
w_ww__.ja_v_a2__s__.__com__ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.