blob: 2c3da9ed286b8c231f2d5cf21db3bba49ff8754c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2017 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 PropertiesFile extends SourceFile {
/**
* @param file
*/
public PropertiesFile(IFile file) {
super(file);
}
@Override
public String getCommentStart() {
return "##"; //$NON-NLS-1$
}
@Override
public String getCommentEnd() {
return "##"; //$NON-NLS-1$
}
@Override
public int getFileType() {
return CopyrightComment.PROPERTIES_COMMENT;
}
}