Interface IFormRefactoringService


  • public interface IFormRefactoringService
    The refactoring service for form model objects.
    • Method Detail

      • createFormRenameRefactoring

        IRefactoring createFormRenameRefactoring​(NamedElement element,
                                                 String newName)
        Creates a refactoring that renames the specified element.
        Parameters:
        element - the form model object to rename, cannot be null.
        newName - the new name for the element, cannot be null or empty.
        Returns:
        a refactoring instance, never null.
      • createFormDeleteRefactoring

        IRefactoring createFormDeleteRefactoring​(Collection<? extends NamedElement> elements)
        Creates a refactoring that deletes specified elements.
        Parameters:
        elements - the form model objects to delete, cannot be null.
        Returns:
        a refactoring instance, never null.