~ubuntu-branches/ubuntu/quantal/netbeans/quantal

« back to all changes in this revision

Viewing changes to java/source/src/org/netbeans/modules/java/source/usages/AllRefactoringsPluginFactory.java

  • Committer: Bazaar Package Importer
  • Author(s): Marek Slama
  • Date: 2008-01-29 14:11:22 UTC
  • Revision ID: james.westby@ubuntu.com-20080129141122-fnzjbo11ntghxfu7
Tags: upstream-6.0.1
ImportĀ upstreamĀ versionĀ 6.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
3
 * 
 
4
 * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
 
5
 * 
 
6
 * The contents of this file are subject to the terms of either the GNU
 
7
 * General Public License Version 2 only ("GPL") or the Common
 
8
 * Development and Distribution License("CDDL") (collectively, the
 
9
 * "License"). You may not use this file except in compliance with the
 
10
 * License. You can obtain a copy of the License at
 
11
 * http://www.netbeans.org/cddl-gplv2.html
 
12
 * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
 
13
 * specific language governing permissions and limitations under the
 
14
 * License.  When distributing the software, include this License Header
 
15
 * Notice in each file and include the License file at
 
16
 * nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
 
17
 * particular file as subject to the "Classpath" exception as provided
 
18
 * by Sun in the GPL Version 2 section of the License file that
 
19
 * accompanied this code. If applicable, add the following below the
 
20
 * License Header, with the fields enclosed by brackets [] replaced by
 
21
 * your own identifying information:
 
22
 * "Portions Copyrighted [year] [name of copyright owner]"
 
23
 * 
 
24
 * If you wish your version of this file to be governed by only the CDDL
 
25
 * or only the GPL Version 2, indicate your decision by adding
 
26
 * "[Contributor] elects to include this software in this distribution
 
27
 * under the [CDDL or GPL Version 2] license." If you do not indicate a
 
28
 * single choice of license, a recipient has the option to distribute
 
29
 * your version of this file under either the CDDL, the GPL Version 2 or
 
30
 * to extend the choice of license to its licensees as provided above.
 
31
 * However, if you add GPL Version 2 code and therefore, elected the GPL
 
32
 * Version 2 license, then the option applies only if the new code is
 
33
 * made subject to such option by the copyright holder.
 
34
 * 
 
35
 * Contributor(s):
 
36
 * 
 
37
 * Portions Copyrighted 2007 Sun Microsystems, Inc.
 
38
 */
 
39
 
 
40
package org.netbeans.modules.java.source.usages;
 
41
 
 
42
import java.util.logging.Level;
 
43
import java.util.logging.Logger;
 
44
import org.netbeans.api.java.source.JavaSource;
 
45
import org.netbeans.modules.java.source.JavaSourceAccessor;
 
46
import org.netbeans.modules.java.source.JavaSourceSupportAccessor;
 
47
import org.netbeans.modules.refactoring.api.AbstractRefactoring;
 
48
import org.netbeans.modules.refactoring.api.Problem;
 
49
import org.netbeans.modules.refactoring.api.ProgressEvent;
 
50
import org.netbeans.modules.refactoring.api.ProgressListener;
 
51
import org.netbeans.modules.refactoring.spi.RefactoringElementsBag;
 
52
import org.netbeans.modules.refactoring.spi.RefactoringPlugin;
 
53
import org.netbeans.modules.refactoring.spi.RefactoringPluginFactory;
 
54
import org.openide.filesystems.FileObject;
 
55
import org.openide.util.RequestProcessor;
 
56
 
 
57
/**
 
58
 *
 
59
 * @author lahvac
 
60
 */
 
61
public class AllRefactoringsPluginFactory implements RefactoringPluginFactory {
 
62
 
 
63
    public RefactoringPlugin createInstance(AbstractRefactoring refactoring) {
 
64
        return new RefactoringPluginImpl();
 
65
    }
 
66
    
 
67
    private static final class RefactoringPluginImpl implements RefactoringPlugin {
 
68
 
 
69
        public Problem preCheck() {
 
70
            return null;
 
71
        }
 
72
 
 
73
        public Problem checkParameters() {
 
74
            return null;
 
75
        }
 
76
 
 
77
        public Problem fastCheckParameters() {
 
78
            return null;
 
79
        }
 
80
 
 
81
        public void cancelRequest() {}
 
82
 
 
83
        public Problem prepare(RefactoringElementsBag refactoringElements) {
 
84
            refactoringElements.getSession().addProgressListener(new ProgressListener() {
 
85
                public void start(ProgressEvent event) {
 
86
                    RepositoryUpdater.getDefault().lockRU();
 
87
                }
 
88
                public void step(ProgressEvent event) {}
 
89
                public void stop(ProgressEvent event) {
 
90
                    RepositoryUpdater.getDefault().unlockRU(new Runnable() {
 
91
                        public void run() {
 
92
                            for (FileObject f : JavaSourceSupportAccessor.ACCESSOR.getVisibleEditorsFiles()) {
 
93
                                JavaSource source = JavaSource.forFileObject(f);
 
94
                                if (source != null) {
 
95
                                    JavaSourceAccessor.INSTANCE.revalidate(source);
 
96
                                }
 
97
                            }
 
98
                        }
 
99
                    });
 
100
                }
 
101
            });
 
102
            
 
103
            return null;
 
104
        }
 
105
        
 
106
    }
 
107
 
 
108
    private static final RequestProcessor REFRESHER = new RequestProcessor(AllRefactoringsPluginFactory.class.getName(), 1);
 
109
    
 
110
}