blob: cb0e52b56ae0eaa7c2a5adbf25467fbca5555465 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2016 xored software, Inc. 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:
* xored software, Inc. - initial API and Implementation (Alex Panchenko)
*******************************************************************************/
package org.eclipse.dltk.formatter;
import org.eclipse.jface.text.IRegion;
public class FormatterIndentDetector implements IFormatterWriter {
private final int offset;
private boolean indentDetected = false;
private int level;
/**
* @param offset
*/
public FormatterIndentDetector(int offset) {
this.offset = offset;
}
@Override
public void addNewLineCallback(IFormatterCallback callback) {
// empty
}
@Override
public void excludeRegion(IRegion region) {
// empty
}
@Override
public void ensureLineStarted(IFormatterContext context) {
// empty
}
@Override
public void write(IFormatterContext context, int startOffset, int endOffset) {
if (!indentDetected && endOffset >= offset) {
level = context.getIndent();
indentDetected = true;
}
}
@Override
public void writeText(IFormatterContext context, String text) {
// empty
}
@Override
public void writeLineBreak(IFormatterContext context) {
// empty
}
@Override
public void skipNextLineBreaks(IFormatterContext context) {
// empty
}
@Override
public void skipNextLineBreaks(IFormatterContext context, boolean value) {
// empty
}
@Override
public void appendToPreviousLine(IFormatterContext context, String text) {
// empty
}
@Override
public void disableAppendToPreviousLine() {
// empty
}
/**
* @return the level
*/
public int getLevel() {
return level;
}
}