blob: d6a4af1e1a55e1116719cd2aecfdb6801c99e03c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 xored software, Inc.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* xored software, Inc. - initial API and Implementation (Vladimir Belov)
*******************************************************************************/
package org.eclipse.dltk.javascript.formatter.internal.nodes;
import org.eclipse.dltk.formatter.IFormatterDocument;
import org.eclipse.dltk.javascript.formatter.JavaScriptFormatterConstants;
public class ElseIfBlockBracesConfiguration extends
AbstractElseBracesConfiguration {
public ElseIfBlockBracesConfiguration(IFormatterDocument document) {
super(document);
// Do not set indentation level here, it sets by IF statement!
bracesSettingName = JavaScriptFormatterConstants.BRACE_BLOCK;
}
public int insertBeforeOpenBrace() {
if (getDocument().getBoolean(
JavaScriptFormatterConstants.KEEP_ELSE_IF_ON_ONE_LINE))
return IBracesConfiguration.ONE_SPACE;
else
return IBracesConfiguration.LINE_BREAK;
}
public int insertAfterOpenBrace() {
return IBracesConfiguration.UNDEFINED;
}
}