blob: 749c2f6615b0d9c216d80d313ef4844b350dded7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2010 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.releng.tools;
import org.eclipse.core.resources.IFile;
public class JavaScriptFile extends SourceFile {
public JavaScriptFile(IFile file) {
super(file);
}
/* (non-Javadoc)
* @see Test.popup.actions.SourceFile#getCommentStart()
*/
@Override
public String getCommentStart() {
return "/*"; //$NON-NLS-1$
}
/* (non-Javadoc)
* @see Test.popup.actions.SourceFile#getCommentEnd()
*/
@Override
public String getCommentEnd() {
return "*/"; //$NON-NLS-1$
}
@Override
public int getFileType() {
return CopyrightComment.JAVASCRIPT_COMMENT;
}
}