Package edu.ohio_state.khatchad.refactoring.core

Examples of edu.ohio_state.khatchad.refactoring.core.InternalStateStatus


    if (result.getNodeType() != ASTNode.SIMPLE_NAME) {
      final String errorMessage = Messages.ConvertConstantsToEnumRefactoring_WrongType;
      status
          .merge(RefactoringStatus
              .createFatalErrorStatus(MessageFormat.format(errorMessage,new Object[] {node, node.getClass()})));
      final IStatus stateStatus = new InternalStateStatus(IStatus.ERROR,
          errorMessage);
      throw new CoreException(stateStatus);
    }

    // Get the fully qualified type name.
View Full Code Here

TOP

Related Classes of edu.ohio_state.khatchad.refactoring.core.InternalStateStatus

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.