Package org.eclipse.jdt.internal.formatter

Examples of org.eclipse.jdt.internal.formatter.Location


  public Alignment(int kind, int mode, int tieBreakRule, Scribe scribe, int fragmentCount, int sourceRestart, int continuationIndent){

    Assert.isTrue(kind >=ALLOCATION && kind <=MULTI_CATCH);
    this.kind = kind;
    this.name = NAMES[kind];
    this.location = new Location(scribe, sourceRestart);
    this.mode = mode;
    this.tieBreakRule = tieBreakRule;
    this.fragmentCount = fragmentCount;
    this.scribe = scribe;
    this.originalIndentationLevel = this.scribe.indentationLevel;
View Full Code Here


  public Alignment(int kind, int mode, int tieBreakRule, Scribe scribe, int fragmentCount, int sourceRestart, int continuationIndent){

    Assert.isTrue(kind >=ALLOCATION && kind <=MULTI_CATCH);
    this.kind = kind;
    this.name = NAMES[kind];
    this.location = new Location(scribe, sourceRestart);
    this.mode = mode;
    this.tieBreakRule = tieBreakRule;
    this.fragmentCount = fragmentCount;
    this.scribe = scribe;
    this.originalIndentationLevel = this.scribe.indentationLevel;
View Full Code Here

TOP

Related Classes of org.eclipse.jdt.internal.formatter.Location

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.