/******************************************************************************* * Copyright (c) 2014 Google 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: * John Glassmyer <jogl@google.com> - import group sorting is broken - https://bugs.eclipse.org/430303 *******************************************************************************/ package org.eclipse.jdt.internal.core.dom.rewrite.imports; import org.eclipse.jface.text.IRegion; final class ImportComment { /** The original location of this comment in the compilation unit. */ final IRegion region; /** * The number of line delimiters following this comment and preceding the next comment or the * associated import declaration. Used to preserve blank lines between comments and/or import * declarations. Will be 0 for a trailing comment. */ final int succeedingLineDelimiters; ImportComment(IRegion region, int succeedingLineDelims) { this.region = region; this.succeedingLineDelimiters = succeedingLineDelims; } }