Package org.eclipse.jdt.internal.core

Source Code of org.eclipse.jdt.internal.core.CompilationUnitElementInfo

/*******************************************************************************
* Copyright (c) 2000, 2014 IBM Corporation 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:
*     IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.core;

import org.eclipse.jdt.core.ISourceRange;
import org.eclipse.jdt.core.SourceRange;

public class CompilationUnitElementInfo extends OpenableElementInfo {
 
  /**
   * Count that will be used by SourceTypeConverter to decide whether or not to diet parse.
   */
  public static int ANNOTATION_THRESHOLD_FOR_DIET_PARSE = 10;

  /**
   * The length of this compilation unit's source code <code>String</code>
   */
  protected int sourceLength;

  /**
   * Timestamp of original resource at the time this element
   * was opened or last updated.
   */
  protected long timestamp;

  /*
   * Number of annotations in this compilation unit
   */
  public int annotationNumber = 0;

  public boolean hasFunctionalTypes = false;

/**
* Returns the length of the source string.
*/
public int getSourceLength() {
  return this.sourceLength;
}
protected ISourceRange getSourceRange() {
  return new SourceRange(0, this.sourceLength);
}
/**
* Sets the length of the source string.
*/
public void setSourceLength(int newSourceLength) {
  this.sourceLength = newSourceLength;
}
}
TOP

Related Classes of org.eclipse.jdt.internal.core.CompilationUnitElementInfo

TOP
Copyright © 2018 www.massapi.com. 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.