Package org.eclipse.ltk.core.refactoring

Examples of org.eclipse.ltk.core.refactoring.RefactoringStatus


  public void initializeValidationData(IProgressMonitor pm) {

  }

  public RefactoringStatus isValid(IProgressMonitor pm) throws CoreException, OperationCanceledException {
    return new RefactoringStatus();
  }
View Full Code Here


 
  private ICompilationUnit compilationUnit;

  public RefactoringStatus checkConditions(IProgressMonitor pm, CheckConditionsContext context) throws OperationCanceledException {
    return new RefactoringStatus(); // we are OK to delete
  }
View Full Code Here

    // pa_TODO implement
    // This method must ensure that the change object is still valid.
    // This is in particular interesting when performing an undo change
    // since the workspace could have changed since the undo change has
    // been created.
    return new RefactoringStatus();
  }
View Full Code Here

   *
   * @see org.eclipse.ltk.core.refactoring.participants.RefactoringParticipant#checkConditions(
   *   org.eclipse.core.runtime.IProgressMonitor, org.eclipse.ltk.core.refactoring.participants.CheckConditionsContext)
   */
  public RefactoringStatus checkConditions(IProgressMonitor pm, CheckConditionsContext context) {
    return new RefactoringStatus();
  }
View Full Code Here

   *
   * @see org.eclipse.ltk.core.refactoring.participants.RefactoringParticipant#checkConditions(
   *   org.eclipse.core.runtime.IProgressMonitor, org.eclipse.ltk.core.refactoring.participants.CheckConditionsContext)
   */
  public RefactoringStatus checkConditions(IProgressMonitor pm, CheckConditionsContext context) {
    return new RefactoringStatus();
  }
View Full Code Here

   * <p>Currently will always be {@link RefactoringStatus#OK}</p>
   *
   * @see org.eclipse.ltk.core.refactoring.DocumentChange#isValid(org.eclipse.core.runtime.IProgressMonitor)
   */
  public RefactoringStatus isValid(IProgressMonitor pm)throws CoreException {
    return new RefactoringStatus();
  }
View Full Code Here

    // pa_TODO implement
    // This method must ensure that the change object is still valid.
    // This is in particular interesting when performing an undo change
    // since the workspace could have changed since the undo change has
    // been created.
    return new RefactoringStatus();
  }
View Full Code Here

    // pa_TODO implement
    // This method must ensure that the change object is still valid.
    // This is in particular interesting when performing an undo change
    // since the workspace could have changed since the undo change has
    // been created.
    return new RefactoringStatus();
  }
View Full Code Here

    // pa_TODO implement
    // This method must ensure that the change object is still valid.
    // This is in particular interesting when performing an undo change
    // since the workspace could have changed since the undo change has
    // been created.
    return new RefactoringStatus();
  }
View Full Code Here

   *
   * @see org.eclipse.ltk.core.refactoring.participants.RefactoringParticipant#checkConditions(
   *   org.eclipse.core.runtime.IProgressMonitor, org.eclipse.ltk.core.refactoring.participants.CheckConditionsContext)
   */
  public RefactoringStatus checkConditions(IProgressMonitor pm, CheckConditionsContext context) {
    return new RefactoringStatus();
  }
View Full Code Here

TOP

Related Classes of org.eclipse.ltk.core.refactoring.RefactoringStatus

Copyright © 2018 www.massapicom. 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.