All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.aspectj.org.eclipse.jdt.core.dom.rewrite.ITrackedNodePosition Maven / Gradle / Ivy

/*******************************************************************************
 * Copyright (c) 2004, 2008 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.aspectj.org.eclipse.jdt.core.dom.rewrite;

/**
 * A tracked node position is returned when a rewrite change is
 * requested to be tracked.
 * 

* This interface is not intended to be implemented by clients. *

* * @see ASTRewrite#track(org.aspectj.org.eclipse.jdt.core.dom.ASTNode) * @since 3.0 * @noimplement This interface is not intended to be implemented by clients. */ public interface ITrackedNodePosition { /** * Returns the original or modified start position of the tracked node depending if called before * or after the rewrite is applied. -1 is returned for removed nodes. * * @return the original or modified start position of the tracked node */ public int getStartPosition(); /** * Returns the original or modified length of the tracked node depending if called before * or after the rewrite is applied. -1 is returned for removed nodes. * * @return the original or modified length of the tracked node */ public int getLength(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy