Package org.kacprzak.eclipse.django_editor.editors.format

Examples of org.kacprzak.eclipse.django_editor.editors.format.TextFormattingStrategy


 
  @Override
  public IContentFormatter getContentFormatter(ISourceViewer sourceViewer) {
    ContentFormatter formatter = new ContentFormatter();
   
    formatter.setFormattingStrategy(new TextFormattingStrategy(), IDocument.DEFAULT_CONTENT_TYPE);
    formatter.setFormattingStrategy(new TextFormattingStrategy(), IDjangoPartitions.DJANGO_TAG);
    formatter.setFormattingStrategy(new TextFormattingStrategy(), IDjangoPartitions.DJANGO_VARIABLE);
    formatter.setFormattingStrategy(new TextFormattingStrategy(), IDjangoPartitions.HTML_TAG);
    formatter.setFormattingStrategy(new TextFormattingStrategy(), IDjangoPartitions.JAVA_SCRIPT);
    formatter.setFormattingStrategy(new TextFormattingStrategy(), IDjangoPartitions.HTML_CSS);
   
    return formatter;
  }
View Full Code Here

TOP

Related Classes of org.kacprzak.eclipse.django_editor.editors.format.TextFormattingStrategy

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.