Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 5d702d3614123581ec63a31cbadc0b5c291e4d9c (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                                 

                                      
 









                                                                                        

                                            


                                        

                                                          

                                                         
                                                                                                           









                                                                                                   
                                                                                    







                                           
                                                  

















                                                                             
/*******************************************************************************
 * Copyright (c) 2000, 2003 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials 
 * are made available under the terms of the Common Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/cpl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.debug.internal.ui;

 
import org.eclipse.ui.texteditor.ITextEditor;

/**
 * Represents the context for a single instruction pointer.  This is a convenience class
 * used to store the three objects that comprise an instruction pointer 'context' so it
 * can be stored in collections.
 */
public class InstructionPointerContext {

	/**
	 * The text editor for this context.
	 */
	private ITextEditor fTextEditor;
	
	/**
	 * The vertical ruler annotation for this context.
	 */
	private InstructionPointerAnnotation fAnnotation;

	public InstructionPointerContext(ITextEditor textEditor, InstructionPointerAnnotation annotation) {
		setTextEditor(textEditor);
		setAnnotation(annotation);
	}
	
	/**
	 * @see java.lang.Object#equals(java.lang.Object)
	 */
	public boolean equals(Object other) {
		if (other instanceof InstructionPointerContext) {
			InstructionPointerContext otherContext = (InstructionPointerContext) other;
			return getAnnotation().equals(otherContext.getAnnotation());
		}
		return false;
	}
	
	/**
	 * @see java.lang.Object#hashCode()
	 */
	public int hashCode() {
		return getAnnotation().hashCode();
	}

	private void setTextEditor(ITextEditor textEditor) {
		fTextEditor = textEditor;
	}

	public ITextEditor getTextEditor() {
		return fTextEditor;
	}

	private void setAnnotation(InstructionPointerAnnotation annotation) {
		fAnnotation = annotation;
	}

	public InstructionPointerAnnotation getAnnotation() {
		return fAnnotation;
	}
}

Back to the top