blob: 8dbeb85e3068aad8520d542cbcfff09204bc04de [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2009 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.jsdt.web.core.javascript;
import org.eclipse.wst.jsdt.core.IJavaScriptUnit;
import org.eclipse.wst.jsdt.core.IProblemRequestor;
import org.eclipse.wst.jsdt.core.WorkingCopyOwner;
/**
* Provisional API: This class/interface is part of an interim API that is still under development and expected to
* change significantly before reaching stability. It is being made available at this early stage to solicit feedback
* from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
* (repeatedly) as the API evolves.
*
* <br><br> this code was taken from the JSP plugin. This class is to ensure only one copy of the compilation unit exits.
*
* @author pavery
*/
public class CompilationUnitHelper {
private static CompilationUnitHelper instance;
public synchronized static final CompilationUnitHelper getInstance() {
if (CompilationUnitHelper.instance == null) {
CompilationUnitHelper.instance = new CompilationUnitHelper();
}
return CompilationUnitHelper.instance;
}
private JsProblemRequestor fProblemRequestor = null;
private WorkingCopyOwner fWorkingCopyOwner = null;
private CompilationUnitHelper() {
// force use of instance
}
public JsProblemRequestor getProblemRequestor() {
if (fProblemRequestor == null) {
fProblemRequestor = new JsProblemRequestor();
}
return fProblemRequestor;
}
public WorkingCopyOwner getWorkingCopyOwner() {
if (fWorkingCopyOwner == null) {
fWorkingCopyOwner = new WorkingCopyOwner() {
/* (non-Javadoc)
* @see org.eclipse.wst.jsdt.core.WorkingCopyOwner#getProblemRequestor(org.eclipse.wst.jsdt.core.IJavaScriptUnit)
*/
public IProblemRequestor getProblemRequestor(IJavaScriptUnit workingCopy) {
return CompilationUnitHelper.this.getProblemRequestor();
}
public String toString() {
return "Client JavaScript WorkingCopyOwner"; //$NON-NLS-1$
}
};
}
return fWorkingCopyOwner;
}
}