TypeParameterElementInfo.java :  » IDE » IntelliJ » org » eclipse » jdt » internal » core » Java Open Source

Java Open Source » IDE » IntelliJ 
IntelliJ » org » eclipse » jdt » internal » core » TypeParameterElementInfo.java
/*******************************************************************************
 * Copyright (c) 2004, 2006 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;

public class TypeParameterElementInfo extends SourceRefElementInfo {
  
  /*
   * The start position of this type parameter's name in the its
   * openable's buffer.
   */
  public int nameStart= -1;

  /*
   * The last position of this type parameter name in the its
   * openable's buffer.
   */
  public int nameEnd= -1;

  /*
   * The bounds names of this type parameter.
   */
  public char[][] bounds;
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.