blob: a48304c3faf32acff9a95ce6ab6d3b152e01aee3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 ILOG 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:
* Joel Cheuoua - Initial API and implementation
*******************************************************************************/
package org.eclipse.jet.internal.editor.formatter;
import org.eclipse.jface.text.formatter.IFormattingContext;
import org.eclipse.jface.text.formatter.IFormattingStrategy;
import org.eclipse.jface.text.formatter.IFormattingStrategyExtension;
public class JETJavaScriptletFormattingStrategy implements IFormattingStrategy, IFormattingStrategyExtension {
public String format(String content, boolean isLineStart, String indentation, int[] positions) {
// TODO Auto-generated method stub
return null;
}
public void formatterStarts(String initialIndentation) {
// TODO Auto-generated method stub
}
public void formatterStops() {
// TODO Auto-generated method stub
}
public void format() {
// TODO Auto-generated method stub
}
public void formatterStarts(IFormattingContext context) {
// TODO Auto-generated method stub
}
}