Location.java :  » IDE-Eclipse » All-Other-packages » com » sun » jdi » Java Open Source

Java Open Source » IDE Eclipse » All Other packages 
All Other packages » com » sun » jdi » Location.java
/*******************************************************************************
 * Copyright (c) 2000, 2005 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 com.sun.jdi;


public interface Location extends Mirror , Comparable {
  public long codeIndex();
  public ReferenceType declaringType();
  public boolean equals(Object arg1);
  public int hashCode();
  public int lineNumber();
     public int lineNumber(String stratum);
  public Method method();
     public String sourceName() throws AbsentInformationException;
     public String sourceName(String stratum) throws AbsentInformationException;
     public String sourcePath() throws AbsentInformationException;
     public String sourcePath(String stratum) throws AbsentInformationException;
}
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.