Package org.eclipse.dltk.internal.corext.refactoring.tagging

Examples of org.eclipse.dltk.internal.corext.refactoring.tagging.ITextUpdating


    IReferenceUpdating reference = (IReferenceUpdating) refactoring.getAdapter(IReferenceUpdating.class);
    if (reference != null) {
      reference.setUpdateReferences((flags & UPDATE_REFERENCES) != 0);
    }

    ITextUpdating text = (ITextUpdating) refactoring.getAdapter(ITextUpdating.class);
    if (text != null) {
      text.setUpdateTextualMatches((flags & UPDATE_TEXTUAL_MATCHES) != 0);
    }
  }
View Full Code Here

TOP

Related Classes of org.eclipse.dltk.internal.corext.refactoring.tagging.ITextUpdating

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.