Package gauge.messages
Interface Messages.RefactorResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Messages.RefactorResponse,Messages.RefactorResponse.Builder
- Enclosing class:
- Messages
public static interface Messages.RefactorResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetError()/ Error message, valid only if Refactor wasn't successfulcom.google.protobuf.ByteStringgetErrorBytes()/ Error message, valid only if Refactor wasn't successfulMessages.FileChangesgetFileChanges(int index)/ List of file changes to be made to successfully achieve refactoring.intgetFileChangesCount()/ List of file changes to be made to successfully achieve refactoring.List<Messages.FileChanges>getFileChangesList()/ List of file changes to be made to successfully achieve refactoring.Messages.FileChangesOrBuildergetFileChangesOrBuilder(int index)/ List of file changes to be made to successfully achieve refactoring.List<? extends Messages.FileChangesOrBuilder>getFileChangesOrBuilderList()/ List of file changes to be made to successfully achieve refactoring.StringgetFilesChanged(int index)/ List of files that were affected because of the refactoring.com.google.protobuf.ByteStringgetFilesChangedBytes(int index)/ List of files that were affected because of the refactoring.intgetFilesChangedCount()/ List of files that were affected because of the refactoring.List<String>getFilesChangedList()/ List of files that were affected because of the refactoring.booleangetSuccess()/ Flag indicating the success of Refactor operation.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSuccess
boolean getSuccess()
/ Flag indicating the success of Refactor operation.
bool success = 1;
-
getError
String getError()
/ Error message, valid only if Refactor wasn't successful
string error = 2;
-
getErrorBytes
com.google.protobuf.ByteString getErrorBytes()
/ Error message, valid only if Refactor wasn't successful
string error = 2;
-
getFilesChangedList
List<String> getFilesChangedList()
/ List of files that were affected because of the refactoring.
repeated string filesChanged = 3;
-
getFilesChangedCount
int getFilesChangedCount()
/ List of files that were affected because of the refactoring.
repeated string filesChanged = 3;
-
getFilesChanged
String getFilesChanged(int index)
/ List of files that were affected because of the refactoring.
repeated string filesChanged = 3;
-
getFilesChangedBytes
com.google.protobuf.ByteString getFilesChangedBytes(int index)
/ List of files that were affected because of the refactoring.
repeated string filesChanged = 3;
-
getFileChangesList
List<Messages.FileChanges> getFileChangesList()
/ List of file changes to be made to successfully achieve refactoring.
repeated .gauge.messages.FileChanges fileChanges = 4;
-
getFileChanges
Messages.FileChanges getFileChanges(int index)
/ List of file changes to be made to successfully achieve refactoring.
repeated .gauge.messages.FileChanges fileChanges = 4;
-
getFileChangesCount
int getFileChangesCount()
/ List of file changes to be made to successfully achieve refactoring.
repeated .gauge.messages.FileChanges fileChanges = 4;
-
getFileChangesOrBuilderList
List<? extends Messages.FileChangesOrBuilder> getFileChangesOrBuilderList()
/ List of file changes to be made to successfully achieve refactoring.
repeated .gauge.messages.FileChanges fileChanges = 4;
-
getFileChangesOrBuilder
Messages.FileChangesOrBuilder getFileChangesOrBuilder(int index)
/ List of file changes to be made to successfully achieve refactoring.
repeated .gauge.messages.FileChanges fileChanges = 4;
-
-