Source Code Cross Referenced for RenameElementsOperation.java in  » IDE-Eclipse » jdt » org » eclipse » jdt » internal » core » 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 » IDE Eclipse » jdt » org.eclipse.jdt.internal.core 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*******************************************************************************
02:         * Copyright (c) 2000, 2007 IBM Corporation and others.
03:         * All rights reserved. This program and the accompanying materials
04:         * are made available under the terms of the Eclipse Public License v1.0
05:         * which accompanies this distribution, and is available at
06:         * http://www.eclipse.org/legal/epl-v10.html
07:         *
08:         * Contributors:
09:         *     IBM Corporation - initial API and implementation
10:         *******************************************************************************/package org.eclipse.jdt.internal.core;
11:
12:        import org.eclipse.jdt.core.IJavaElement;
13:        import org.eclipse.jdt.core.IJavaModelStatus;
14:        import org.eclipse.jdt.core.IJavaModelStatusConstants;
15:        import org.eclipse.jdt.core.ISourceReference;
16:        import org.eclipse.jdt.core.JavaModelException;
17:        import org.eclipse.jdt.internal.core.util.Messages;
18:
19:        /**
20:         * This operation renames elements.
21:         *
22:         * <p>Notes:<ul>
23:         * <li>Resource rename is not supported - this operation only renames
24:         *	   elements contained in compilation units.
25:         * <li>When a main type is renamed, its compilation unit and constructors are renamed.
26:         * <li>Constructors cannot be renamed.
27:         * </ul>
28:         */
29:        public class RenameElementsOperation extends MoveElementsOperation {
30:            /**
31:             * When executed, this operation will rename the specified elements with the given names in the
32:             * corresponding destinations.
33:             */
34:            public RenameElementsOperation(IJavaElement[] elements,
35:                    IJavaElement[] destinations, String[] newNames,
36:                    boolean force) {
37:                //a rename is a move to the same parent with a new name specified
38:                //these elements are from different parents
39:                super (elements, destinations, force);
40:                setRenamings(newNames);
41:            }
42:
43:            /**
44:             * @see MultiOperation
45:             */
46:            protected String getMainTaskName() {
47:                return Messages.operation_renameElementProgress;
48:            }
49:
50:            /**
51:             * @see CopyElementsOperation#isRename()
52:             */
53:            protected boolean isRename() {
54:                return true;
55:            }
56:
57:            /**
58:             * @see MultiOperation
59:             */
60:            protected IJavaModelStatus verify() {
61:                IJavaModelStatus status = super .verify();
62:                if (!status.isOK())
63:                    return status;
64:                if (this .renamingsList == null
65:                        || this .renamingsList.length == 0)
66:                    return new JavaModelStatus(
67:                            IJavaModelStatusConstants.NULL_NAME);
68:                return JavaModelStatus.VERIFIED_OK;
69:            }
70:
71:            /**
72:             * @see MultiOperation
73:             */
74:            protected void verify(IJavaElement element)
75:                    throws JavaModelException {
76:                if (element == null || !element.exists())
77:                    error(IJavaModelStatusConstants.ELEMENT_DOES_NOT_EXIST,
78:                            element);
79:
80:                if (element.isReadOnly())
81:                    error(IJavaModelStatusConstants.READ_ONLY, element);
82:
83:                if (!(element instanceof  ISourceReference))
84:                    error(IJavaModelStatusConstants.INVALID_ELEMENT_TYPES,
85:                            element);
86:
87:                int elementType = element.getElementType();
88:                if (elementType < IJavaElement.TYPE
89:                        || elementType == IJavaElement.INITIALIZER)
90:                    error(IJavaModelStatusConstants.INVALID_ELEMENT_TYPES,
91:                            element);
92:
93:                verifyRenaming(element);
94:            }
95:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.