├── CONTRIBUTING.md
├── LICENSE.html
├── README.md
├── com.google.eclipse.protobuf.cdt.test
├── .classpath
├── .gitignore
├── .project
├── META-INF
│ └── MANIFEST.MF
├── build.properties
└── src
│ └── com
│ └── google
│ └── eclipse
│ └── protobuf
│ └── cdt
│ ├── mapping
│ └── ClassMappingStrategy_createMappingFrom_Test.java
│ ├── matching
│ ├── MessageMatcherStrategy_matchingProtobufElementLocations_Test.java
│ └── Resources.java
│ └── util
│ └── ExtendedListIterator_Test.java
├── com.google.eclipse.protobuf.cdt
├── .classpath
├── .gitignore
├── .project
├── META-INF
│ └── MANIFEST.MF
├── build.properties
├── icons
│ └── pb.gif
├── plugin.xml
└── src
│ └── com
│ └── google
│ └── eclipse
│ └── protobuf
│ └── cdt
│ ├── ProtobufCdtActivator.java
│ ├── ProtobufCdtExecutableExtensionFactory.java
│ ├── ProtobufCdtModule.java
│ ├── ProtobufObjectsProvider.java
│ ├── actions
│ ├── AstBasedCppToProtobufMapper.java
│ ├── OpenProtoDeclarationAction.java
│ ├── ProtoFilePathFinder.java
│ └── ProtobufElementUriFinder.java
│ ├── cpplang
│ └── CppKeywords.java
│ ├── mapping
│ ├── ClassMappingStrategy.java
│ ├── CppToProtobufMapper.java
│ ├── CppToProtobufMapping.java
│ ├── EnumMappingStrategy.java
│ ├── IBindingMappingStrategy.java
│ ├── IBindings.java
│ ├── MethodMappingStrategy.java
│ └── TypeDefMappingStrategy.java
│ ├── matching
│ ├── AbstractProtobufElementMatcherStrategy.java
│ ├── MessageMatcherStrategy.java
│ ├── PatternBuilder.java
│ └── ProtobufElementMatchFinder.java
│ └── util
│ ├── Editors.java
│ ├── ExtendedIterator.java
│ └── ExtendedListIterator.java
├── com.google.eclipse.protobuf.feature
├── .project
├── build.properties
├── epl-v10.html
├── feature.properties
└── feature.xml
├── com.google.eclipse.protobuf.test
├── .classpath
├── .gitignore
├── .project
├── .settings
│ └── org.eclipse.jdt.core.prefs
├── META-INF
│ └── MANIFEST.MF
├── build.properties
└── src
│ └── com
│ └── google
│ └── eclipse
│ └── protobuf
│ ├── bugs
│ ├── Issue131_AddOptionsForService_Test.java
│ ├── Issue147_AddSupportForGroupOptions_Test.java
│ ├── Issue148_FixDuplicateNameError_Test.java
│ ├── Issue150_AddSupportForExtendMessageToGroups_Test.java
│ ├── Issue152_SupportEscapedCharactersInStrings_Test.java
│ ├── Issue153_AddSupportForNegativeInf_Test.java
│ ├── Issue154_AllowMultipleSemicolons_Test.java
│ ├── Issue156_AddSupportForEnumValueOptions_Test.java
│ ├── Issue157_GroupsShouldBeTypes_Test.java
│ ├── Issue161_PackageScoping_Test.java
│ ├── Issue165_Support64BitNumbers_Test.java
│ ├── Issue166_SupportOptionalDecimals_Test.java
│ ├── Issue167_PackageScopingWithNestedTypes_Test.java
│ ├── Issue168_GroupsCanHaveMessagesAndExtensions_Test.java
│ ├── Issue169_AddSupportForExtendingGroups_Test.java
│ ├── Issue184_AddPlusSignToScientificNotation_Test.java
│ ├── Issue185_CustomOptionsShouldAllowEmptyBracesAsValue_Test.java
│ ├── Issue187_ExposeAllTypesInDescriptor_Test.java
│ ├── Issue188_CustomOptionFieldsMayEndWithComma_Test.java
│ ├── Issue189_ScopingShouldLookForClosestType.java
│ ├── Issue197_AllowEmptyStatements_Test.java
│ ├── Issue198_SupportScientificNotationWithDecimals_Test.java
│ ├── Issue202_CacheQualifiedNamesDuringScoping_Test.java
│ ├── Issue202_CacheQualifiedNamesDuringScoping_withIgnoredTypes_Test.java
│ ├── Issue229_ReferenceToTypeFromNestedMessage.java
│ ├── Issue91_AddSupportForUTF16Strings_Test.java
│ ├── MapSyntaxTest.java
│ ├── MultilineStringsSyntaxTest.java
│ ├── Proto3SyntaxTest.java
│ ├── StreamSyntaxTest.java
│ ├── SupportCurlyAndAngleBracketsForComplexValues.java
│ ├── SupportTripleQuotes.java
│ └── b10744621_AllowSemicolonAfterOptionValue_Test.java
│ ├── conversion
│ ├── DOUBLEValueConverter_toValue_Test.java
│ ├── DOUBLEValueConverter_toValue_withInvalidInput_Test.java
│ ├── HEXValueConverter_toValue_Test.java
│ ├── HEXValueConverter_toValue_withInvalidInput_Test.java
│ └── LONGValueConverter_toValue_Test.java
│ ├── formatting
│ ├── CommentReaderRule.java
│ └── ProtobufFormatter_Test.java
│ ├── grammar
│ ├── CommonKeyword_hasValue_Test.java
│ ├── CommonKeyword_toString_Test.java
│ ├── Keywords_isKeyword_Test.java
│ ├── Syntaxes_proto2_Test.java
│ └── Syntaxes_proto3_Test.java
│ ├── junit
│ ├── IEObjectDescriptions.java
│ ├── core
│ │ ├── AbstractTestModule.java
│ │ ├── CommentReader.java
│ │ ├── FileCreator.java
│ │ ├── Finder.java
│ │ ├── GeneratedProtoFiles.java
│ │ ├── IntegrationTestModule.java
│ │ ├── OverrideRuntimeModuleSetup.java
│ │ ├── ProtobufInTestsParser.java
│ │ ├── SearchOption.java
│ │ ├── UnitTestModule.java
│ │ └── XtextRule.java
│ ├── matchers
│ │ ├── ContainAllFields.java
│ │ ├── ContainAllFieldsInMessage.java
│ │ ├── ContainAllLiteralsInEnum.java
│ │ ├── ContainAllNames.java
│ │ ├── ContainNames.java
│ │ ├── EnumHasLiterals.java
│ │ └── FieldHasType.java
│ ├── stubs
│ │ └── resources
│ │ │ ├── FileStub.java
│ │ │ └── MarkerStub.java
│ └── util
│ │ └── MultiLineTextBuilder.java
│ ├── linking
│ ├── ProtobufDiagnosticMatcher.java
│ ├── ProtobufDiagnostic_appendToMessage_Test.java
│ ├── ProtobufDiagnostic_constructor_Test.java
│ └── ProtobufResource_createDiagnostic_Test.java
│ ├── model
│ └── util
│ │ ├── INodes_firstNodeForFeature_Test.java
│ │ ├── INodes_isCommentOrString_Test.java
│ │ ├── INodes_isComment_Test.java
│ │ ├── INodes_isHiddenLeafNode_Test.java
│ │ ├── INodes_isMultipleLineComment_Test.java
│ │ ├── INodes_isSingleLineComment_Test.java
│ │ ├── INodes_isString_Test.java
│ │ ├── Imports_getPath_Test.java
│ │ ├── Imports_resolvedUriOf_Test.java
│ │ ├── IndexedElements_calculateNewIndexFor_Test.java
│ │ ├── IndexedElements_fieldOptionsOf_Test.java
│ │ ├── IndexedElements_indexFeatureOf_Test.java
│ │ ├── IndexedElements_indexOf_Test.java
│ │ ├── IndexedElements_setIndexOf_Test.java
│ │ ├── Literals_calculateNewIndexOf_Test.java
│ │ ├── MessageFields_enumTypeOf_Test.java
│ │ ├── MessageFields_isBool_Test.java
│ │ ├── MessageFields_isPrimitive_Test.java
│ │ ├── MessageFields_isString_Test.java
│ │ ├── MessageFields_messageTypeOf_Test.java
│ │ ├── MessageFields_scalarTypeOf_Test.java
│ │ ├── MessageFields_typeNameOf_Test.java
│ │ ├── Messages_localExtensionsFrom_Test.java
│ │ ├── ModelObjects_packageOf_Test.java
│ │ ├── ModelObjects_rootOf_Test.java
│ │ ├── ModelObjects_uriOf_Test.java
│ │ ├── Options_fieldsOf_CustomFieldOption_Test.java
│ │ ├── Options_fieldsOf_CustomOption_Test.java
│ │ ├── Options_isDefaultValueOption_Test.java
│ │ ├── Options_nameForOption_Test.java
│ │ ├── Options_nameOf_FieldOption_Test.java
│ │ ├── Options_rootSourceOf_FieldOption_Test.java
│ │ ├── Options_rootSourceOf_Option_Test.java
│ │ ├── Options_sourceOfLastFieldIn_CustomFieldOption_Test.java
│ │ ├── Options_sourceOfLastFieldIn_CustomOption_Test.java
│ │ ├── Options_sourceOf_CustomFieldOption_Test.java
│ │ ├── Options_sourceOf_CustomOption_Test.java
│ │ ├── Packages_addPackageNameSegments_Test.java
│ │ ├── Packages_areRelated_Test.java
│ │ ├── Protobufs_importsIn_Test.java
│ │ ├── QualifiedNameCollectionContains.java
│ │ └── TypeExtensions_messageFrom_Test.java
│ ├── naming
│ ├── LocalNamesProvider_getAllLocalNames_Test.java
│ ├── NameResolver_nameOf_Test.java
│ ├── ProtobufQualifiedNameConverter_toQualifiedName_Test.java
│ ├── ProtobufQualifiedNameProvider_getFullyQualifiedName_Test.java
│ └── QualifiedNames_addLeadingDot_Test.java
│ ├── resource
│ ├── IndexLookup_areReferringToSameFile_Tests.java
│ └── IndexLookup_resourceIn_Test.java
│ ├── scoping
│ ├── ProtobufScopeProvider_scope_ComplexTypeLink_target_Test.java
│ ├── ProtobufScopeProvider_scope_FieldName_target_with_ExtensionFieldName_Test.java
│ ├── ProtobufScopeProvider_scope_FieldName_target_with_NormalFieldName_Test.java
│ ├── ProtobufScopeProvider_scope_LiteralLink_target_Test.java
│ ├── ProtobufScopeProvider_scope_OptionField_target_with_ExtensionOptionField_Test.java
│ ├── ProtobufScopeProvider_scope_OptionField_target_with_MessageOptionField_Test.java
│ └── ProtobufScopeProvider_scope_OptionSource_target_Test.java
│ ├── util
│ ├── Uris_exists_withFile_Test.java
│ ├── Uris_prefixOf_Test.java
│ └── Uris_segmentsWithoutFileName_Test.java
│ └── validation
│ ├── ImportValidator_checkUnknownSyntaxImports_Test.java
│ ├── ImportValidator_checkUnknownSyntaxImports_withNonProto2Imports_Tests.java
│ ├── ProtobufJavaValidator_checkFieldModifiers_Test.java
│ ├── ProtobufJavaValidator_checkForIndexConflicts_Test.java
│ ├── ProtobufJavaValidator_checkForReservedIndexAndName_Test.java
│ ├── ProtobufJavaValidator_checkForReservedNameConflicts_Test.java
│ ├── ProtobufJavaValidator_checkForReservedToMax_Test.java
│ ├── ProtobufJavaValidator_checkIndexRangeBounds.java
│ ├── ProtobufJavaValidator_checkMapNotWithinTypeExtension.java
│ ├── ProtobufJavaValidator_checkMapTypeHasValidKeyType_Test.java
│ ├── ProtobufJavaValidator_checkMapTypeHasValidValueType_Test.java
│ ├── ProtobufJavaValidator_checkOnlyOnePackageDefinition_Test.java
│ ├── ProtobufJavaValidator_checkSyntaxIsKnown_Test.java
│ └── ProtobufJavaValidator_checkTagNumberIsGreaterThanZero_Test.java
├── com.google.eclipse.protobuf.ui.functional.test
├── .classpath
├── .gitignore
├── .project
├── .settings
│ └── org.eclipse.jdt.core.prefs
├── META-INF
│ └── MANIFEST.MF
├── build.properties
└── src
│ └── com
│ └── google
│ └── eclipse
│ └── protobuf
│ └── ui
│ ├── editor
│ ├── hyperlinking
│ │ └── ImportHyperlinking_Test.java
│ └── model
│ │ └── ProtobufDocumentProvider_Test.java
│ ├── junit
│ ├── CommentReaderRule.java
│ └── XtextRule.java
│ ├── preferences
│ ├── AbsractPreferencePageTestCase.java
│ └── editor
│ │ └── save
│ │ ├── SaveActionsPreferencePage_Test.java
│ │ └── SaveActionsWritablePreferences.java
│ └── swtbot
│ └── ProtobufBot.java
├── com.google.eclipse.protobuf.ui.integration.test
├── .classpath
├── .gitignore
├── .project
├── .settings
│ └── org.eclipse.jdt.core.prefs
├── META-INF
│ └── MANIFEST.MF
├── build.properties
└── src
│ └── com
│ └── google
│ └── eclipse
│ └── protobuf
│ └── ui
│ ├── labeling
│ ├── Images_imageFor_Test.java
│ ├── Labels_labelFor_Test.java
│ └── ProjectFileExists.java
│ └── parser
│ └── PreferenceDrivenProtobufParser_doParse_Test.java
├── com.google.eclipse.protobuf.ui.test
├── .classpath
├── .gitignore
├── .project
├── .settings
│ └── org.eclipse.jdt.core.prefs
├── META-INF
│ └── MANIFEST.MF
├── build.properties
└── src
│ └── com
│ └── google
│ └── eclipse
│ └── protobuf
│ └── ui
│ ├── commands
│ └── semicolon
│ │ └── SmartSemicolonHandlerTest.java
│ ├── contentassist
│ ├── IEObjectDescriptionChooser_shortestQualifiedNamesIn_Test.java
│ └── IEObjectDescriptionsHaveNames.java
│ ├── documentation
│ ├── MLCommentDocumentationProvider_getDocumentation_Test.java
│ ├── ProtobufDocumentationProvider_getDocumentation_Test.java
│ └── SLCommentDocumentationProvider_getDocumentation_Test.java
│ ├── editor
│ └── model
│ │ └── ContentReader_contentsOf_Test.java
│ ├── grammar
│ ├── CompoundElement_charCount_Test.java
│ ├── CompoundElement_hasValue_Test.java
│ ├── CompoundElement_indexOf_Test.java
│ └── CompoundElement_toString_Test.java
│ ├── preferences
│ ├── pages
│ │ ├── ButtonGroup_add_Test.java
│ │ └── binding
│ │ │ ├── BindingToButtonSelection_Test.java
│ │ │ ├── BindingToListItems_Test.java
│ │ │ ├── BindingToTextValue_Test.java
│ │ │ ├── BooleanPreference_Test.java
│ │ │ └── PreferenceBinder_Test.java
│ └── paths
│ │ └── core
│ │ ├── DirectoryPath_parse_Test.java
│ │ ├── ProjectVariable_replaceProjectNameWithProjectVariable_Test.java
│ │ └── ProjectVariable_replaceProjectVariableWithProjectName_Test.java
│ ├── protoc
│ ├── command
│ │ ├── CodeGenerationProtocOption_segmentsOf_Test.java
│ │ ├── DescriptorPathProtocOption_appendOptionToCommand_Test.java
│ │ └── ImportRootsProtocOption_singleImportRoot_Test.java
│ └── output
│ │ ├── CompositeOutputParser_parseAndAddMarkerIfNecessary_Test.java
│ │ ├── ProtocMarkerFactory_createErrorIfNecessary_Test.java
│ │ ├── RegexOutputParser_parseAndAddMarkerIfNecessary_withLineNumber_Test.java
│ │ └── RegexOutputParser_parseAndAddMarkerIfNecessary_withoutLineNumber_Test.java
│ ├── scoping
│ ├── FileSystemPathResolver_resolvePath_Test.java
│ ├── MultipleDirectoriesUriResolver_resolveUri_Test.java
│ ├── SingleDirectoryUriResolver_resolveUri_withFileUri_Test.java
│ ├── SingleDirectoryUriResolver_resolveUri_withPlatformResourceUri_Test.java
│ └── UrisStub.java
│ └── util
│ └── CommaSeparatedValues_splitCsv_Test.java
├── com.google.eclipse.protobuf.ui
├── .classpath
├── .gitignore
├── .options
├── .project
├── .settings
│ └── org.eclipse.jdt.core.prefs
├── META-INF
│ └── MANIFEST.MF
├── OSGI-INF
│ └── l10n
│ │ └── bundle.properties
├── build.properties
├── icons
│ ├── change.gif
│ ├── checked.gif
│ ├── empty.gif
│ ├── enum.gif
│ ├── extensions.gif
│ ├── field.gif
│ ├── folder.gif
│ ├── group.gif
│ ├── import.gif
│ ├── imports.gif
│ ├── literal.gif
│ ├── message.gif
│ ├── option.gif
│ ├── optional.gif
│ ├── options.gif
│ ├── package.gif
│ ├── pb-ro.gif
│ ├── pb.gif
│ ├── remove.gif
│ ├── repeated.gif
│ ├── required.gif
│ ├── rpc.gif
│ ├── service.gif
│ ├── stream.gif
│ ├── syntax.gif
│ ├── typeextension.gif
│ ├── unchecked.gif
│ └── workspace.gif
├── plugin.xml
├── resources
│ └── newFileContents.proto
└── src
│ └── com
│ └── google
│ └── eclipse
│ └── protobuf
│ └── ui
│ ├── ProtobufUiModule.java
│ ├── SharedModuleOverrides.java
│ ├── builder
│ ├── nature
│ │ └── ProtobufEditorCallback.java
│ └── protoc
│ │ ├── ConsolePrinter.java
│ │ └── ProtobufBuildParticipant.java
│ ├── commands
│ ├── SmartInsertHandler.java
│ └── semicolon
│ │ └── SmartSemicolonHandler.java
│ ├── contentassist
│ ├── IEObjectDescriptionChooser.java
│ └── ProtobufProposalProvider.java
│ ├── documentation
│ ├── MLCommentDocumentationProvider.java
│ ├── Patterns.java
│ ├── ProtobufDocumentationProvider.java
│ └── SLCommentDocumentationProvider.java
│ ├── editor
│ ├── FileOpener.java
│ ├── FileOutsideWorkspaceIconUpdater.java
│ ├── ProtobufEditor.java
│ ├── ProtobufUriEditorOpener.java
│ ├── UriEditorInput.java
│ ├── hyperlinking
│ │ ├── ImportHyperlink.java
│ │ └── ProtobufHyperlinkDetector.java
│ ├── model
│ │ ├── ContentReader.java
│ │ ├── DocumentContentsFactory.java
│ │ ├── FileStoreDocumentContentsFactory.java
│ │ ├── ProtobufDocumentProvider.java
│ │ ├── SaveActions.java
│ │ └── UriDocumentContentsFactory.java
│ └── syntaxcoloring
│ │ ├── HighlightingConfiguration.java
│ │ ├── Messages.java
│ │ ├── Messages.properties
│ │ ├── ProtobufAntlrTokenToAttributeIdMapper.java
│ │ └── ProtobufSemanticHighlightingCalculator.java
│ ├── grammar
│ └── CompoundElement.java
│ ├── internal
│ └── Activator.java
│ ├── labeling
│ ├── Images.java
│ ├── Labels.java
│ ├── Messages.java
│ ├── Messages.properties
│ ├── ProtobufDescriptionLabelProvider.java
│ └── ProtobufLabelProvider.java
│ ├── outline
│ ├── LinkWithEditor.java
│ ├── Messages.java
│ ├── Messages.properties
│ ├── OutlineViewModel.java
│ ├── ProtobufOutlinePage.java
│ ├── ProtobufOutlineTreeProvider.java
│ └── SimpleOutlineNode.java
│ ├── parser
│ └── PreferenceDrivenProtobufParser.java
│ ├── plugin
│ └── ProtobufEditorPlugIn.java
│ ├── preferences
│ ├── StringSplitter.java
│ ├── compiler
│ │ ├── CodeGenerationPreference.java
│ │ ├── CompilerPreferencePage.java
│ │ ├── CompilerPreferences.java
│ │ ├── CppCodeGenerationPreference.java
│ │ ├── JavaCodeGenerationPreference.java
│ │ ├── Messages.java
│ │ ├── Messages.properties
│ │ ├── PreferenceNames.java
│ │ └── PythonCodeGenerationPreference.java
│ ├── editor
│ │ ├── general
│ │ │ ├── EditorPreferencePage.java
│ │ │ ├── Messages.java
│ │ │ └── Messages.properties
│ │ ├── ignore
│ │ │ ├── IgnoredExtensionsPreferences.java
│ │ │ └── PreferenceNames.java
│ │ ├── numerictag
│ │ │ ├── AddOrEditPatternDialog.java
│ │ │ ├── Messages.java
│ │ │ ├── Messages.properties
│ │ │ ├── NumericTagPatternSplitter.java
│ │ │ ├── NumericTagPreferencePage.java
│ │ │ ├── NumericTagPreferences.java
│ │ │ └── PreferenceNames.java
│ │ └── save
│ │ │ ├── Messages.java
│ │ │ ├── Messages.properties
│ │ │ ├── PreferenceNames.java
│ │ │ ├── SaveActionsPreferencePage.java
│ │ │ └── SaveActionsPreferences.java
│ ├── general
│ │ ├── GeneralPreferencePage.java
│ │ ├── Messages.java
│ │ └── Messages.properties
│ ├── misc
│ │ ├── MiscellaneousPreferences.java
│ │ └── PreferenceNames.java
│ ├── pages
│ │ ├── ButtonGroup.java
│ │ ├── DataChangedListener.java
│ │ ├── InputDialog.java
│ │ ├── LabelWidgets.java
│ │ ├── Messages.java
│ │ ├── Messages.properties
│ │ ├── PreferenceAndPropertyPage.java
│ │ ├── SystemColors.java
│ │ ├── TextWidgets.java
│ │ └── binding
│ │ │ ├── AbstractPreference.java
│ │ │ ├── Binding.java
│ │ │ ├── BindingToButtonSelection.java
│ │ │ ├── BindingToListItems.java
│ │ │ ├── BindingToTextValue.java
│ │ │ ├── BooleanPreference.java
│ │ │ ├── Preference.java
│ │ │ ├── PreferenceBinder.java
│ │ │ ├── PreferenceFactory.java
│ │ │ ├── StringListPreference.java
│ │ │ └── StringPreference.java
│ └── paths
│ │ ├── AddDirectoryDialog.java
│ │ ├── DirectoryPath.java
│ │ ├── DirectoryPathsEditor.java
│ │ ├── DirectorySelectionDialogs.java
│ │ ├── Messages.java
│ │ ├── Messages.properties
│ │ ├── PathsPreferencePage.java
│ │ ├── PathsPreferences.java
│ │ ├── PreferenceNames.java
│ │ └── ProjectVariable.java
│ ├── protoc
│ ├── command
│ │ ├── CodeGenerationProtocOption.java
│ │ ├── DescriptorPathProtocOption.java
│ │ ├── ImportRootsProtocOption.java
│ │ ├── ProtocCommand.java
│ │ ├── ProtocCommandBuilder.java
│ │ └── ProtocOption.java
│ └── output
│ │ ├── CompositeOutputParser.java
│ │ ├── ProtocMarkerFactory.java
│ │ ├── ProtocOutputParser.java
│ │ └── RegexOutputParser.java
│ ├── quickfix
│ ├── Messages.java
│ ├── Messages.properties
│ └── ProtobufQuickfixProvider.java
│ ├── resource
│ ├── ProtobufServiceProvider.java
│ ├── ProtobufStorage2UriMapper.java
│ ├── ResourceVerifier.java
│ └── XtextResourceFactory.java
│ ├── scoping
│ ├── FileSystemPathResolver.java
│ ├── ImportResolver.java
│ ├── MultipleDirectoriesUriResolver.java
│ ├── ResourceLocations.java
│ ├── SingleDirectoryUriResolver.java
│ ├── UriResolver.java
│ └── UriResolverHelper.java
│ ├── util
│ ├── CommaSeparatedValues.java
│ ├── Editors.java
│ ├── IPaths.java
│ ├── IProjects.java
│ ├── IStatusFactory.java
│ ├── Workbenches.java
│ └── editor
│ │ ├── ChangedLineRegionCalculator.java
│ │ ├── LineComparator.java
│ │ ├── Messages.java
│ │ └── Messages.properties
│ ├── validation
│ ├── AbstractPartListener.java
│ ├── MarkerTypes.java
│ ├── ProtobufMarkerTypeProvider.java
│ ├── ProtobufValidation.java
│ └── ValidationTrigger.java
│ └── wizards
│ ├── Messages.java
│ ├── Messages.properties
│ ├── NewProtoFileWizard.java
│ └── NewProtoFileWizardPage.java
├── com.google.eclipse.protobuf
├── .antlr-generator-3.2.0.jar
├── .classpath
├── .gitignore
├── .project
├── .settings
│ ├── com.google.eclipse.protobuf.Protobuf.prefs
│ ├── org.eclipse.jdt.core.prefs
│ └── org.eclipse.jdt.ui.prefs
├── META-INF
│ └── MANIFEST.MF
├── OSGI-INF
│ └── l10n
│ │ └── bundle.properties
├── build.properties
├── descriptor.proto
├── plugin.xml
├── schema
│ └── descriptor-source.exsd
├── src-gen
│ └── .gitignore
└── src
│ └── com
│ └── google
│ └── eclipse
│ └── protobuf
│ ├── GenerateProtobuf.mwe2
│ ├── Protobuf.xtext
│ ├── ProtobufEcorePostProcessor.java
│ ├── ProtobufGenerator.java
│ ├── ProtobufRuntimeModule.java
│ ├── ProtobufStandaloneSetup.java
│ ├── conversion
│ ├── DOUBLEValueConverter.java
│ ├── HEXValueConverter.java
│ ├── LONGValueConverter.java
│ └── ProtobufTerminalConverters.java
│ ├── formatting
│ └── ProtobufFormatter.java
│ ├── generator
│ └── Activator.java
│ ├── grammar
│ ├── CommonKeyword.java
│ └── Keywords.java
│ ├── linking
│ ├── ProtobufDiagnostic.java
│ └── ProtobufResource.java
│ ├── model
│ └── util
│ │ ├── INodes.java
│ │ ├── Imports.java
│ │ ├── IndexRanges.java
│ │ ├── IndexedElements.java
│ │ ├── Literals.java
│ │ ├── MessageFields.java
│ │ ├── Messages.java
│ │ ├── ModelObjects.java
│ │ ├── OptionFields.java
│ │ ├── Options.java
│ │ ├── Packages.java
│ │ ├── Protobufs.java
│ │ ├── QualifiedNames.java
│ │ ├── Resources.java
│ │ ├── StringLiterals.java
│ │ ├── Syntaxes.java
│ │ └── TypeExtensions.java
│ ├── naming
│ ├── IProtobufQualifiedNameProvider.java
│ ├── LocalNamesProvider.java
│ ├── NameResolver.java
│ ├── NameType.java
│ ├── NamingStrategy.java
│ ├── NormalNamingStrategy.java
│ ├── OptionNamingStrategy.java
│ ├── ProtobufQualifiedNameConverter.java
│ └── ProtobufQualifiedNameProvider.java
│ ├── parser
│ └── UnknownSyntaxProtobuf.java
│ ├── preferences
│ ├── DefaultPreservingInitializer.java
│ └── general
│ │ ├── GeneralPreferences.java
│ │ └── PreferenceNames.java
│ ├── resource
│ ├── FastXtextResourceSet.java
│ ├── GlobalResourceServiceProvider.java
│ ├── IResourceVerifier.java
│ ├── IndexLookup.java
│ └── ResourceSets.java
│ ├── scoping
│ ├── ExtensionRegistryProvider.java
│ ├── IImportResolver.java
│ ├── IUriResolver.java
│ ├── OptionType.java
│ ├── ProtoDescriptorProvider.java
│ ├── ProtobufCaseInsensitivityHelper.java
│ ├── ProtobufImportNamespacesScopingFragment.java
│ ├── ProtobufImportNamespacesScopingFragment.xpt
│ ├── ProtobufImportScope.java
│ ├── ProtobufImportUriGlobalScopeProvider.java
│ ├── ProtobufImportedNamespaceAwareLocalScopeProvider.java
│ ├── ProtobufScopeProvider.java
│ └── ProtobufSelectableBasedScope.java
│ ├── util
│ ├── CommonWords.java
│ ├── EResources.java
│ ├── Encodings.java
│ ├── StringLists.java
│ ├── Strings.java
│ ├── SystemProperties.java
│ ├── TimingCollector.java
│ ├── Tracer.java
│ ├── Uris.java
│ └── Workspaces.java
│ └── validation
│ ├── DataTypeValidator.java
│ ├── ImportValidator.java
│ ├── Messages.java
│ ├── Messages.properties
│ ├── ProtobufJavaValidator.java
│ ├── ProtobufResourceValidator.java
│ └── ProtobufSyntaxErrorMessageProvider.java
└── releng
├── .project
├── GenerateProtobuf.mwe2.launch
└── ProtobufEditor.setup
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/CONTRIBUTING.md
--------------------------------------------------------------------------------
/LICENSE.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/LICENSE.html
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/README.md
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt.test/.classpath:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt.test/.classpath
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt.test/.gitignore:
--------------------------------------------------------------------------------
1 | /.settings
2 | /bin
3 |
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt.test/.project:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt.test/.project
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt.test/META-INF/MANIFEST.MF:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt.test/META-INF/MANIFEST.MF
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt.test/build.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt.test/build.properties
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt.test/src/com/google/eclipse/protobuf/cdt/mapping/ClassMappingStrategy_createMappingFrom_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt.test/src/com/google/eclipse/protobuf/cdt/mapping/ClassMappingStrategy_createMappingFrom_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt.test/src/com/google/eclipse/protobuf/cdt/matching/MessageMatcherStrategy_matchingProtobufElementLocations_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt.test/src/com/google/eclipse/protobuf/cdt/matching/MessageMatcherStrategy_matchingProtobufElementLocations_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt.test/src/com/google/eclipse/protobuf/cdt/matching/Resources.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt.test/src/com/google/eclipse/protobuf/cdt/matching/Resources.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt.test/src/com/google/eclipse/protobuf/cdt/util/ExtendedListIterator_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt.test/src/com/google/eclipse/protobuf/cdt/util/ExtendedListIterator_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt/.classpath:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt/.classpath
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt/.gitignore:
--------------------------------------------------------------------------------
1 | /.settings
2 | /bin
3 |
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt/.project:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt/.project
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt/META-INF/MANIFEST.MF:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt/META-INF/MANIFEST.MF
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt/build.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt/build.properties
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt/icons/pb.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt/icons/pb.gif
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt/plugin.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt/plugin.xml
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/ProtobufCdtActivator.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/ProtobufCdtActivator.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/ProtobufCdtExecutableExtensionFactory.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/ProtobufCdtExecutableExtensionFactory.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/ProtobufCdtModule.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/ProtobufCdtModule.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/ProtobufObjectsProvider.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/ProtobufObjectsProvider.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/actions/AstBasedCppToProtobufMapper.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/actions/AstBasedCppToProtobufMapper.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/actions/OpenProtoDeclarationAction.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/actions/OpenProtoDeclarationAction.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/actions/ProtoFilePathFinder.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/actions/ProtoFilePathFinder.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/actions/ProtobufElementUriFinder.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/actions/ProtobufElementUriFinder.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/cpplang/CppKeywords.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/cpplang/CppKeywords.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/mapping/ClassMappingStrategy.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/mapping/ClassMappingStrategy.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/mapping/CppToProtobufMapper.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/mapping/CppToProtobufMapper.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/mapping/CppToProtobufMapping.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/mapping/CppToProtobufMapping.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/mapping/EnumMappingStrategy.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/mapping/EnumMappingStrategy.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/mapping/IBindingMappingStrategy.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/mapping/IBindingMappingStrategy.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/mapping/IBindings.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/mapping/IBindings.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/mapping/MethodMappingStrategy.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/mapping/MethodMappingStrategy.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/mapping/TypeDefMappingStrategy.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/mapping/TypeDefMappingStrategy.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/matching/AbstractProtobufElementMatcherStrategy.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/matching/AbstractProtobufElementMatcherStrategy.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/matching/MessageMatcherStrategy.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/matching/MessageMatcherStrategy.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/matching/PatternBuilder.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/matching/PatternBuilder.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/matching/ProtobufElementMatchFinder.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/matching/ProtobufElementMatchFinder.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/util/Editors.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/util/Editors.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/util/ExtendedIterator.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/util/ExtendedIterator.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/util/ExtendedListIterator.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.cdt/src/com/google/eclipse/protobuf/cdt/util/ExtendedListIterator.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.feature/.project:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.feature/.project
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.feature/build.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.feature/build.properties
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.feature/epl-v10.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.feature/epl-v10.html
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.feature/feature.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.feature/feature.properties
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.feature/feature.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.feature/feature.xml
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/.classpath:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/.classpath
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/.gitignore:
--------------------------------------------------------------------------------
1 | /test-protos
2 | /bin
3 |
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/.project:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/.project
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/.settings/org.eclipse.jdt.core.prefs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/.settings/org.eclipse.jdt.core.prefs
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/META-INF/MANIFEST.MF:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/META-INF/MANIFEST.MF
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/build.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/build.properties
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue131_AddOptionsForService_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue131_AddOptionsForService_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue147_AddSupportForGroupOptions_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue147_AddSupportForGroupOptions_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue148_FixDuplicateNameError_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue148_FixDuplicateNameError_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue150_AddSupportForExtendMessageToGroups_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue150_AddSupportForExtendMessageToGroups_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue152_SupportEscapedCharactersInStrings_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue152_SupportEscapedCharactersInStrings_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue153_AddSupportForNegativeInf_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue153_AddSupportForNegativeInf_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue154_AllowMultipleSemicolons_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue154_AllowMultipleSemicolons_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue156_AddSupportForEnumValueOptions_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue156_AddSupportForEnumValueOptions_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue157_GroupsShouldBeTypes_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue157_GroupsShouldBeTypes_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue161_PackageScoping_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue161_PackageScoping_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue165_Support64BitNumbers_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue165_Support64BitNumbers_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue166_SupportOptionalDecimals_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue166_SupportOptionalDecimals_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue167_PackageScopingWithNestedTypes_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue167_PackageScopingWithNestedTypes_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue168_GroupsCanHaveMessagesAndExtensions_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue168_GroupsCanHaveMessagesAndExtensions_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue169_AddSupportForExtendingGroups_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue169_AddSupportForExtendingGroups_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue184_AddPlusSignToScientificNotation_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue184_AddPlusSignToScientificNotation_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue185_CustomOptionsShouldAllowEmptyBracesAsValue_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue185_CustomOptionsShouldAllowEmptyBracesAsValue_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue187_ExposeAllTypesInDescriptor_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue187_ExposeAllTypesInDescriptor_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue188_CustomOptionFieldsMayEndWithComma_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue188_CustomOptionFieldsMayEndWithComma_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue189_ScopingShouldLookForClosestType.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue189_ScopingShouldLookForClosestType.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue197_AllowEmptyStatements_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue197_AllowEmptyStatements_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue198_SupportScientificNotationWithDecimals_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue198_SupportScientificNotationWithDecimals_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue202_CacheQualifiedNamesDuringScoping_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue202_CacheQualifiedNamesDuringScoping_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue202_CacheQualifiedNamesDuringScoping_withIgnoredTypes_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue202_CacheQualifiedNamesDuringScoping_withIgnoredTypes_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue229_ReferenceToTypeFromNestedMessage.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue229_ReferenceToTypeFromNestedMessage.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue91_AddSupportForUTF16Strings_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Issue91_AddSupportForUTF16Strings_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/MapSyntaxTest.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/MapSyntaxTest.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/MultilineStringsSyntaxTest.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/MultilineStringsSyntaxTest.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Proto3SyntaxTest.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/Proto3SyntaxTest.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/StreamSyntaxTest.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/StreamSyntaxTest.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/SupportCurlyAndAngleBracketsForComplexValues.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/SupportCurlyAndAngleBracketsForComplexValues.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/SupportTripleQuotes.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/SupportTripleQuotes.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/b10744621_AllowSemicolonAfterOptionValue_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/bugs/b10744621_AllowSemicolonAfterOptionValue_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/conversion/DOUBLEValueConverter_toValue_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/conversion/DOUBLEValueConverter_toValue_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/conversion/DOUBLEValueConverter_toValue_withInvalidInput_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/conversion/DOUBLEValueConverter_toValue_withInvalidInput_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/conversion/HEXValueConverter_toValue_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/conversion/HEXValueConverter_toValue_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/conversion/HEXValueConverter_toValue_withInvalidInput_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/conversion/HEXValueConverter_toValue_withInvalidInput_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/conversion/LONGValueConverter_toValue_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/conversion/LONGValueConverter_toValue_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/formatting/CommentReaderRule.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/formatting/CommentReaderRule.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/formatting/ProtobufFormatter_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/formatting/ProtobufFormatter_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/grammar/CommonKeyword_hasValue_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/grammar/CommonKeyword_hasValue_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/grammar/CommonKeyword_toString_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/grammar/CommonKeyword_toString_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/grammar/Keywords_isKeyword_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/grammar/Keywords_isKeyword_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/grammar/Syntaxes_proto2_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/grammar/Syntaxes_proto2_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/grammar/Syntaxes_proto3_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/grammar/Syntaxes_proto3_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/IEObjectDescriptions.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/IEObjectDescriptions.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/core/AbstractTestModule.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/core/AbstractTestModule.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/core/CommentReader.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/core/CommentReader.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/core/FileCreator.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/core/FileCreator.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/core/Finder.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/core/Finder.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/core/GeneratedProtoFiles.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/core/GeneratedProtoFiles.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/core/IntegrationTestModule.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/core/IntegrationTestModule.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/core/OverrideRuntimeModuleSetup.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/core/OverrideRuntimeModuleSetup.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/core/ProtobufInTestsParser.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/core/ProtobufInTestsParser.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/core/SearchOption.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/core/SearchOption.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/core/UnitTestModule.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/core/UnitTestModule.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/core/XtextRule.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/core/XtextRule.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/matchers/ContainAllFields.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/matchers/ContainAllFields.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/matchers/ContainAllFieldsInMessage.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/matchers/ContainAllFieldsInMessage.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/matchers/ContainAllLiteralsInEnum.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/matchers/ContainAllLiteralsInEnum.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/matchers/ContainAllNames.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/matchers/ContainAllNames.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/matchers/ContainNames.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/matchers/ContainNames.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/matchers/EnumHasLiterals.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/matchers/EnumHasLiterals.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/matchers/FieldHasType.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/matchers/FieldHasType.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/stubs/resources/FileStub.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/stubs/resources/FileStub.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/stubs/resources/MarkerStub.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/stubs/resources/MarkerStub.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/util/MultiLineTextBuilder.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/junit/util/MultiLineTextBuilder.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/linking/ProtobufDiagnosticMatcher.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/linking/ProtobufDiagnosticMatcher.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/linking/ProtobufDiagnostic_appendToMessage_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/linking/ProtobufDiagnostic_appendToMessage_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/linking/ProtobufDiagnostic_constructor_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/linking/ProtobufDiagnostic_constructor_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/linking/ProtobufResource_createDiagnostic_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/linking/ProtobufResource_createDiagnostic_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/INodes_firstNodeForFeature_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/INodes_firstNodeForFeature_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/INodes_isCommentOrString_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/INodes_isCommentOrString_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/INodes_isComment_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/INodes_isComment_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/INodes_isHiddenLeafNode_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/INodes_isHiddenLeafNode_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/INodes_isMultipleLineComment_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/INodes_isMultipleLineComment_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/INodes_isSingleLineComment_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/INodes_isSingleLineComment_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/INodes_isString_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/INodes_isString_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Imports_getPath_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Imports_getPath_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Imports_resolvedUriOf_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Imports_resolvedUriOf_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/IndexedElements_calculateNewIndexFor_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/IndexedElements_calculateNewIndexFor_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/IndexedElements_fieldOptionsOf_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/IndexedElements_fieldOptionsOf_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/IndexedElements_indexFeatureOf_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/IndexedElements_indexFeatureOf_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/IndexedElements_indexOf_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/IndexedElements_indexOf_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/IndexedElements_setIndexOf_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/IndexedElements_setIndexOf_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Literals_calculateNewIndexOf_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Literals_calculateNewIndexOf_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/MessageFields_enumTypeOf_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/MessageFields_enumTypeOf_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/MessageFields_isBool_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/MessageFields_isBool_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/MessageFields_isPrimitive_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/MessageFields_isPrimitive_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/MessageFields_isString_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/MessageFields_isString_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/MessageFields_messageTypeOf_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/MessageFields_messageTypeOf_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/MessageFields_scalarTypeOf_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/MessageFields_scalarTypeOf_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/MessageFields_typeNameOf_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/MessageFields_typeNameOf_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Messages_localExtensionsFrom_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Messages_localExtensionsFrom_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/ModelObjects_packageOf_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/ModelObjects_packageOf_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/ModelObjects_rootOf_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/ModelObjects_rootOf_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/ModelObjects_uriOf_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/ModelObjects_uriOf_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Options_fieldsOf_CustomFieldOption_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Options_fieldsOf_CustomFieldOption_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Options_fieldsOf_CustomOption_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Options_fieldsOf_CustomOption_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Options_isDefaultValueOption_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Options_isDefaultValueOption_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Options_nameForOption_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Options_nameForOption_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Options_nameOf_FieldOption_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Options_nameOf_FieldOption_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Options_rootSourceOf_FieldOption_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Options_rootSourceOf_FieldOption_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Options_rootSourceOf_Option_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Options_rootSourceOf_Option_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Options_sourceOfLastFieldIn_CustomFieldOption_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Options_sourceOfLastFieldIn_CustomFieldOption_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Options_sourceOfLastFieldIn_CustomOption_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Options_sourceOfLastFieldIn_CustomOption_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Options_sourceOf_CustomFieldOption_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Options_sourceOf_CustomFieldOption_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Options_sourceOf_CustomOption_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Options_sourceOf_CustomOption_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Packages_addPackageNameSegments_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Packages_addPackageNameSegments_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Packages_areRelated_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Packages_areRelated_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Protobufs_importsIn_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/Protobufs_importsIn_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/QualifiedNameCollectionContains.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/QualifiedNameCollectionContains.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/TypeExtensions_messageFrom_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/model/util/TypeExtensions_messageFrom_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/naming/LocalNamesProvider_getAllLocalNames_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/naming/LocalNamesProvider_getAllLocalNames_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/naming/NameResolver_nameOf_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/naming/NameResolver_nameOf_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/naming/ProtobufQualifiedNameConverter_toQualifiedName_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/naming/ProtobufQualifiedNameConverter_toQualifiedName_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/naming/ProtobufQualifiedNameProvider_getFullyQualifiedName_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/naming/ProtobufQualifiedNameProvider_getFullyQualifiedName_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/naming/QualifiedNames_addLeadingDot_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/naming/QualifiedNames_addLeadingDot_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/resource/IndexLookup_areReferringToSameFile_Tests.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/resource/IndexLookup_areReferringToSameFile_Tests.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/resource/IndexLookup_resourceIn_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/resource/IndexLookup_resourceIn_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/scoping/ProtobufScopeProvider_scope_ComplexTypeLink_target_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/scoping/ProtobufScopeProvider_scope_ComplexTypeLink_target_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/scoping/ProtobufScopeProvider_scope_FieldName_target_with_ExtensionFieldName_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/scoping/ProtobufScopeProvider_scope_FieldName_target_with_ExtensionFieldName_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/scoping/ProtobufScopeProvider_scope_FieldName_target_with_NormalFieldName_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/scoping/ProtobufScopeProvider_scope_FieldName_target_with_NormalFieldName_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/scoping/ProtobufScopeProvider_scope_LiteralLink_target_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/scoping/ProtobufScopeProvider_scope_LiteralLink_target_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/scoping/ProtobufScopeProvider_scope_OptionField_target_with_ExtensionOptionField_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/scoping/ProtobufScopeProvider_scope_OptionField_target_with_ExtensionOptionField_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/scoping/ProtobufScopeProvider_scope_OptionField_target_with_MessageOptionField_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/scoping/ProtobufScopeProvider_scope_OptionField_target_with_MessageOptionField_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/scoping/ProtobufScopeProvider_scope_OptionSource_target_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/scoping/ProtobufScopeProvider_scope_OptionSource_target_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/util/Uris_exists_withFile_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/util/Uris_exists_withFile_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/util/Uris_prefixOf_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/util/Uris_prefixOf_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/util/Uris_segmentsWithoutFileName_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/util/Uris_segmentsWithoutFileName_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/validation/ImportValidator_checkUnknownSyntaxImports_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/validation/ImportValidator_checkUnknownSyntaxImports_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/validation/ImportValidator_checkUnknownSyntaxImports_withNonProto2Imports_Tests.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/validation/ImportValidator_checkUnknownSyntaxImports_withNonProto2Imports_Tests.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/validation/ProtobufJavaValidator_checkFieldModifiers_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/validation/ProtobufJavaValidator_checkFieldModifiers_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/validation/ProtobufJavaValidator_checkForIndexConflicts_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/validation/ProtobufJavaValidator_checkForIndexConflicts_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/validation/ProtobufJavaValidator_checkForReservedIndexAndName_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/validation/ProtobufJavaValidator_checkForReservedIndexAndName_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/validation/ProtobufJavaValidator_checkForReservedNameConflicts_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/validation/ProtobufJavaValidator_checkForReservedNameConflicts_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/validation/ProtobufJavaValidator_checkForReservedToMax_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/validation/ProtobufJavaValidator_checkForReservedToMax_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/validation/ProtobufJavaValidator_checkIndexRangeBounds.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/validation/ProtobufJavaValidator_checkIndexRangeBounds.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/validation/ProtobufJavaValidator_checkMapNotWithinTypeExtension.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/validation/ProtobufJavaValidator_checkMapNotWithinTypeExtension.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/validation/ProtobufJavaValidator_checkMapTypeHasValidKeyType_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/validation/ProtobufJavaValidator_checkMapTypeHasValidKeyType_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/validation/ProtobufJavaValidator_checkMapTypeHasValidValueType_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/validation/ProtobufJavaValidator_checkMapTypeHasValidValueType_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/validation/ProtobufJavaValidator_checkOnlyOnePackageDefinition_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/validation/ProtobufJavaValidator_checkOnlyOnePackageDefinition_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/validation/ProtobufJavaValidator_checkSyntaxIsKnown_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/validation/ProtobufJavaValidator_checkSyntaxIsKnown_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/validation/ProtobufJavaValidator_checkTagNumberIsGreaterThanZero_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.test/src/com/google/eclipse/protobuf/validation/ProtobufJavaValidator_checkTagNumberIsGreaterThanZero_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.functional.test/.classpath:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.functional.test/.classpath
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.functional.test/.gitignore:
--------------------------------------------------------------------------------
1 | /bin
2 | /test-protos
3 |
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.functional.test/.project:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.functional.test/.project
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.functional.test/.settings/org.eclipse.jdt.core.prefs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.functional.test/.settings/org.eclipse.jdt.core.prefs
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.functional.test/META-INF/MANIFEST.MF:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.functional.test/META-INF/MANIFEST.MF
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.functional.test/build.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.functional.test/build.properties
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.functional.test/src/com/google/eclipse/protobuf/ui/editor/hyperlinking/ImportHyperlinking_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.functional.test/src/com/google/eclipse/protobuf/ui/editor/hyperlinking/ImportHyperlinking_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.functional.test/src/com/google/eclipse/protobuf/ui/editor/model/ProtobufDocumentProvider_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.functional.test/src/com/google/eclipse/protobuf/ui/editor/model/ProtobufDocumentProvider_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.functional.test/src/com/google/eclipse/protobuf/ui/junit/CommentReaderRule.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.functional.test/src/com/google/eclipse/protobuf/ui/junit/CommentReaderRule.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.functional.test/src/com/google/eclipse/protobuf/ui/junit/XtextRule.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.functional.test/src/com/google/eclipse/protobuf/ui/junit/XtextRule.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.functional.test/src/com/google/eclipse/protobuf/ui/preferences/AbsractPreferencePageTestCase.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.functional.test/src/com/google/eclipse/protobuf/ui/preferences/AbsractPreferencePageTestCase.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.functional.test/src/com/google/eclipse/protobuf/ui/preferences/editor/save/SaveActionsPreferencePage_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.functional.test/src/com/google/eclipse/protobuf/ui/preferences/editor/save/SaveActionsPreferencePage_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.functional.test/src/com/google/eclipse/protobuf/ui/preferences/editor/save/SaveActionsWritablePreferences.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.functional.test/src/com/google/eclipse/protobuf/ui/preferences/editor/save/SaveActionsWritablePreferences.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.functional.test/src/com/google/eclipse/protobuf/ui/swtbot/ProtobufBot.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.functional.test/src/com/google/eclipse/protobuf/ui/swtbot/ProtobufBot.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.integration.test/.classpath:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.integration.test/.classpath
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.integration.test/.gitignore:
--------------------------------------------------------------------------------
1 | /bin
2 |
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.integration.test/.project:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.integration.test/.project
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.integration.test/.settings/org.eclipse.jdt.core.prefs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.integration.test/.settings/org.eclipse.jdt.core.prefs
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.integration.test/META-INF/MANIFEST.MF:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.integration.test/META-INF/MANIFEST.MF
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.integration.test/build.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.integration.test/build.properties
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.integration.test/src/com/google/eclipse/protobuf/ui/labeling/Images_imageFor_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.integration.test/src/com/google/eclipse/protobuf/ui/labeling/Images_imageFor_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.integration.test/src/com/google/eclipse/protobuf/ui/labeling/Labels_labelFor_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.integration.test/src/com/google/eclipse/protobuf/ui/labeling/Labels_labelFor_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.integration.test/src/com/google/eclipse/protobuf/ui/labeling/ProjectFileExists.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.integration.test/src/com/google/eclipse/protobuf/ui/labeling/ProjectFileExists.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.integration.test/src/com/google/eclipse/protobuf/ui/parser/PreferenceDrivenProtobufParser_doParse_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.integration.test/src/com/google/eclipse/protobuf/ui/parser/PreferenceDrivenProtobufParser_doParse_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/.classpath:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/.classpath
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/.gitignore:
--------------------------------------------------------------------------------
1 | /bin
2 |
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/.project:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/.project
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/.settings/org.eclipse.jdt.core.prefs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/.settings/org.eclipse.jdt.core.prefs
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/META-INF/MANIFEST.MF:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/META-INF/MANIFEST.MF
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/build.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/build.properties
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/commands/semicolon/SmartSemicolonHandlerTest.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/commands/semicolon/SmartSemicolonHandlerTest.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/contentassist/IEObjectDescriptionChooser_shortestQualifiedNamesIn_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/contentassist/IEObjectDescriptionChooser_shortestQualifiedNamesIn_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/contentassist/IEObjectDescriptionsHaveNames.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/contentassist/IEObjectDescriptionsHaveNames.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/documentation/MLCommentDocumentationProvider_getDocumentation_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/documentation/MLCommentDocumentationProvider_getDocumentation_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/documentation/ProtobufDocumentationProvider_getDocumentation_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/documentation/ProtobufDocumentationProvider_getDocumentation_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/documentation/SLCommentDocumentationProvider_getDocumentation_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/documentation/SLCommentDocumentationProvider_getDocumentation_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/editor/model/ContentReader_contentsOf_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/editor/model/ContentReader_contentsOf_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/grammar/CompoundElement_charCount_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/grammar/CompoundElement_charCount_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/grammar/CompoundElement_hasValue_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/grammar/CompoundElement_hasValue_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/grammar/CompoundElement_indexOf_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/grammar/CompoundElement_indexOf_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/grammar/CompoundElement_toString_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/grammar/CompoundElement_toString_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/preferences/pages/ButtonGroup_add_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/preferences/pages/ButtonGroup_add_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/preferences/pages/binding/BindingToButtonSelection_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/preferences/pages/binding/BindingToButtonSelection_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/preferences/pages/binding/BindingToListItems_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/preferences/pages/binding/BindingToListItems_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/preferences/pages/binding/BindingToTextValue_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/preferences/pages/binding/BindingToTextValue_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/preferences/pages/binding/BooleanPreference_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/preferences/pages/binding/BooleanPreference_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/preferences/pages/binding/PreferenceBinder_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/preferences/pages/binding/PreferenceBinder_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/preferences/paths/core/DirectoryPath_parse_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/preferences/paths/core/DirectoryPath_parse_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/preferences/paths/core/ProjectVariable_replaceProjectNameWithProjectVariable_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/preferences/paths/core/ProjectVariable_replaceProjectNameWithProjectVariable_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/preferences/paths/core/ProjectVariable_replaceProjectVariableWithProjectName_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/preferences/paths/core/ProjectVariable_replaceProjectVariableWithProjectName_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/protoc/command/CodeGenerationProtocOption_segmentsOf_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/protoc/command/CodeGenerationProtocOption_segmentsOf_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/protoc/command/DescriptorPathProtocOption_appendOptionToCommand_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/protoc/command/DescriptorPathProtocOption_appendOptionToCommand_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/protoc/command/ImportRootsProtocOption_singleImportRoot_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/protoc/command/ImportRootsProtocOption_singleImportRoot_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/protoc/output/CompositeOutputParser_parseAndAddMarkerIfNecessary_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/protoc/output/CompositeOutputParser_parseAndAddMarkerIfNecessary_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/protoc/output/ProtocMarkerFactory_createErrorIfNecessary_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/protoc/output/ProtocMarkerFactory_createErrorIfNecessary_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/protoc/output/RegexOutputParser_parseAndAddMarkerIfNecessary_withLineNumber_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/protoc/output/RegexOutputParser_parseAndAddMarkerIfNecessary_withLineNumber_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/protoc/output/RegexOutputParser_parseAndAddMarkerIfNecessary_withoutLineNumber_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/protoc/output/RegexOutputParser_parseAndAddMarkerIfNecessary_withoutLineNumber_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/scoping/FileSystemPathResolver_resolvePath_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/scoping/FileSystemPathResolver_resolvePath_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/scoping/MultipleDirectoriesUriResolver_resolveUri_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/scoping/MultipleDirectoriesUriResolver_resolveUri_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/scoping/SingleDirectoryUriResolver_resolveUri_withFileUri_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/scoping/SingleDirectoryUriResolver_resolveUri_withFileUri_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/scoping/SingleDirectoryUriResolver_resolveUri_withPlatformResourceUri_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/scoping/SingleDirectoryUriResolver_resolveUri_withPlatformResourceUri_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/scoping/UrisStub.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/scoping/UrisStub.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/util/CommaSeparatedValues_splitCsv_Test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui.test/src/com/google/eclipse/protobuf/ui/util/CommaSeparatedValues_splitCsv_Test.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/.classpath:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/.classpath
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/.gitignore:
--------------------------------------------------------------------------------
1 | /src-gen/com
2 | /plugin.xml_gen
3 | /bin
4 |
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/.options:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/.options
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/.project:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/.project
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/.settings/org.eclipse.jdt.core.prefs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/.settings/org.eclipse.jdt.core.prefs
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/META-INF/MANIFEST.MF:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/META-INF/MANIFEST.MF
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/OSGI-INF/l10n/bundle.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/OSGI-INF/l10n/bundle.properties
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/build.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/build.properties
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/icons/change.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/icons/change.gif
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/icons/checked.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/icons/checked.gif
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/icons/empty.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/icons/empty.gif
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/icons/enum.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/icons/enum.gif
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/icons/extensions.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/icons/extensions.gif
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/icons/field.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/icons/field.gif
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/icons/folder.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/icons/folder.gif
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/icons/group.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/icons/group.gif
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/icons/import.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/icons/import.gif
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/icons/imports.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/icons/imports.gif
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/icons/literal.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/icons/literal.gif
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/icons/message.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/icons/message.gif
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/icons/option.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/icons/option.gif
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/icons/optional.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/icons/optional.gif
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/icons/options.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/icons/options.gif
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/icons/package.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/icons/package.gif
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/icons/pb-ro.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/icons/pb-ro.gif
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/icons/pb.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/icons/pb.gif
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/icons/remove.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/icons/remove.gif
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/icons/repeated.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/icons/repeated.gif
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/icons/required.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/icons/required.gif
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/icons/rpc.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/icons/rpc.gif
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/icons/service.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/icons/service.gif
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/icons/stream.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/icons/stream.gif
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/icons/syntax.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/icons/syntax.gif
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/icons/typeextension.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/icons/typeextension.gif
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/icons/unchecked.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/icons/unchecked.gif
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/icons/workspace.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/icons/workspace.gif
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/plugin.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/plugin.xml
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/resources/newFileContents.proto:
--------------------------------------------------------------------------------
1 | syntax = "proto2";
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/ProtobufUiModule.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/ProtobufUiModule.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/SharedModuleOverrides.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/SharedModuleOverrides.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/builder/nature/ProtobufEditorCallback.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/builder/nature/ProtobufEditorCallback.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/builder/protoc/ConsolePrinter.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/builder/protoc/ConsolePrinter.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/builder/protoc/ProtobufBuildParticipant.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/builder/protoc/ProtobufBuildParticipant.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/commands/SmartInsertHandler.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/commands/SmartInsertHandler.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/commands/semicolon/SmartSemicolonHandler.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/commands/semicolon/SmartSemicolonHandler.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/contentassist/IEObjectDescriptionChooser.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/contentassist/IEObjectDescriptionChooser.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/contentassist/ProtobufProposalProvider.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/contentassist/ProtobufProposalProvider.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/documentation/MLCommentDocumentationProvider.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/documentation/MLCommentDocumentationProvider.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/documentation/Patterns.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/documentation/Patterns.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/documentation/ProtobufDocumentationProvider.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/documentation/ProtobufDocumentationProvider.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/documentation/SLCommentDocumentationProvider.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/documentation/SLCommentDocumentationProvider.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/FileOpener.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/FileOpener.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/FileOutsideWorkspaceIconUpdater.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/FileOutsideWorkspaceIconUpdater.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/ProtobufEditor.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/ProtobufEditor.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/ProtobufUriEditorOpener.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/ProtobufUriEditorOpener.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/UriEditorInput.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/UriEditorInput.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/hyperlinking/ImportHyperlink.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/hyperlinking/ImportHyperlink.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/hyperlinking/ProtobufHyperlinkDetector.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/hyperlinking/ProtobufHyperlinkDetector.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/model/ContentReader.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/model/ContentReader.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/model/DocumentContentsFactory.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/model/DocumentContentsFactory.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/model/FileStoreDocumentContentsFactory.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/model/FileStoreDocumentContentsFactory.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/model/ProtobufDocumentProvider.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/model/ProtobufDocumentProvider.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/model/SaveActions.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/model/SaveActions.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/model/UriDocumentContentsFactory.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/model/UriDocumentContentsFactory.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/syntaxcoloring/HighlightingConfiguration.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/syntaxcoloring/HighlightingConfiguration.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/syntaxcoloring/Messages.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/syntaxcoloring/Messages.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/syntaxcoloring/Messages.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/syntaxcoloring/Messages.properties
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/syntaxcoloring/ProtobufAntlrTokenToAttributeIdMapper.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/syntaxcoloring/ProtobufAntlrTokenToAttributeIdMapper.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/syntaxcoloring/ProtobufSemanticHighlightingCalculator.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/editor/syntaxcoloring/ProtobufSemanticHighlightingCalculator.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/grammar/CompoundElement.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/grammar/CompoundElement.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/internal/Activator.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/internal/Activator.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/labeling/Images.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/labeling/Images.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/labeling/Labels.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/labeling/Labels.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/labeling/Messages.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/labeling/Messages.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/labeling/Messages.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/labeling/Messages.properties
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/labeling/ProtobufDescriptionLabelProvider.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/labeling/ProtobufDescriptionLabelProvider.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/labeling/ProtobufLabelProvider.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/labeling/ProtobufLabelProvider.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/outline/LinkWithEditor.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/outline/LinkWithEditor.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/outline/Messages.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/outline/Messages.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/outline/Messages.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/outline/Messages.properties
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/outline/OutlineViewModel.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/outline/OutlineViewModel.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/outline/ProtobufOutlinePage.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/outline/ProtobufOutlinePage.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/outline/ProtobufOutlineTreeProvider.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/outline/ProtobufOutlineTreeProvider.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/outline/SimpleOutlineNode.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/outline/SimpleOutlineNode.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/parser/PreferenceDrivenProtobufParser.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/parser/PreferenceDrivenProtobufParser.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/plugin/ProtobufEditorPlugIn.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/plugin/ProtobufEditorPlugIn.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/StringSplitter.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/StringSplitter.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/compiler/CodeGenerationPreference.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/compiler/CodeGenerationPreference.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/compiler/CompilerPreferencePage.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/compiler/CompilerPreferencePage.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/compiler/CompilerPreferences.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/compiler/CompilerPreferences.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/compiler/CppCodeGenerationPreference.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/compiler/CppCodeGenerationPreference.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/compiler/JavaCodeGenerationPreference.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/compiler/JavaCodeGenerationPreference.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/compiler/Messages.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/compiler/Messages.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/compiler/Messages.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/compiler/Messages.properties
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/compiler/PreferenceNames.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/compiler/PreferenceNames.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/compiler/PythonCodeGenerationPreference.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/compiler/PythonCodeGenerationPreference.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/general/EditorPreferencePage.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/general/EditorPreferencePage.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/general/Messages.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/general/Messages.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/general/Messages.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/general/Messages.properties
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/ignore/IgnoredExtensionsPreferences.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/ignore/IgnoredExtensionsPreferences.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/ignore/PreferenceNames.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/ignore/PreferenceNames.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/numerictag/AddOrEditPatternDialog.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/numerictag/AddOrEditPatternDialog.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/numerictag/Messages.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/numerictag/Messages.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/numerictag/Messages.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/numerictag/Messages.properties
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/numerictag/NumericTagPatternSplitter.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/numerictag/NumericTagPatternSplitter.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/numerictag/NumericTagPreferencePage.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/numerictag/NumericTagPreferencePage.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/numerictag/NumericTagPreferences.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/numerictag/NumericTagPreferences.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/numerictag/PreferenceNames.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/numerictag/PreferenceNames.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/save/Messages.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/save/Messages.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/save/Messages.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/save/Messages.properties
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/save/PreferenceNames.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/save/PreferenceNames.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/save/SaveActionsPreferencePage.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/save/SaveActionsPreferencePage.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/save/SaveActionsPreferences.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/editor/save/SaveActionsPreferences.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/general/GeneralPreferencePage.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/general/GeneralPreferencePage.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/general/Messages.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/general/Messages.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/general/Messages.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/general/Messages.properties
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/misc/MiscellaneousPreferences.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/misc/MiscellaneousPreferences.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/misc/PreferenceNames.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/misc/PreferenceNames.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/ButtonGroup.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/ButtonGroup.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/DataChangedListener.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/DataChangedListener.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/InputDialog.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/InputDialog.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/LabelWidgets.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/LabelWidgets.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/Messages.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/Messages.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/Messages.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/Messages.properties
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/PreferenceAndPropertyPage.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/PreferenceAndPropertyPage.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/SystemColors.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/SystemColors.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/TextWidgets.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/TextWidgets.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/binding/AbstractPreference.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/binding/AbstractPreference.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/binding/Binding.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/binding/Binding.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/binding/BindingToButtonSelection.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/binding/BindingToButtonSelection.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/binding/BindingToListItems.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/binding/BindingToListItems.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/binding/BindingToTextValue.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/binding/BindingToTextValue.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/binding/BooleanPreference.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/binding/BooleanPreference.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/binding/Preference.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/binding/Preference.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/binding/PreferenceBinder.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/binding/PreferenceBinder.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/binding/PreferenceFactory.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/binding/PreferenceFactory.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/binding/StringListPreference.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/binding/StringListPreference.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/binding/StringPreference.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/pages/binding/StringPreference.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/paths/AddDirectoryDialog.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/paths/AddDirectoryDialog.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/paths/DirectoryPath.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/paths/DirectoryPath.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/paths/DirectoryPathsEditor.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/paths/DirectoryPathsEditor.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/paths/DirectorySelectionDialogs.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/paths/DirectorySelectionDialogs.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/paths/Messages.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/paths/Messages.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/paths/Messages.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/paths/Messages.properties
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/paths/PathsPreferencePage.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/paths/PathsPreferencePage.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/paths/PathsPreferences.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/paths/PathsPreferences.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/paths/PreferenceNames.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/paths/PreferenceNames.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/paths/ProjectVariable.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/preferences/paths/ProjectVariable.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/protoc/command/CodeGenerationProtocOption.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/protoc/command/CodeGenerationProtocOption.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/protoc/command/DescriptorPathProtocOption.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/protoc/command/DescriptorPathProtocOption.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/protoc/command/ImportRootsProtocOption.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/protoc/command/ImportRootsProtocOption.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/protoc/command/ProtocCommand.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/protoc/command/ProtocCommand.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/protoc/command/ProtocCommandBuilder.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/protoc/command/ProtocCommandBuilder.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/protoc/command/ProtocOption.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/protoc/command/ProtocOption.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/protoc/output/CompositeOutputParser.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/protoc/output/CompositeOutputParser.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/protoc/output/ProtocMarkerFactory.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/protoc/output/ProtocMarkerFactory.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/protoc/output/ProtocOutputParser.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/protoc/output/ProtocOutputParser.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/protoc/output/RegexOutputParser.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/protoc/output/RegexOutputParser.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/quickfix/Messages.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/quickfix/Messages.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/quickfix/Messages.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/quickfix/Messages.properties
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/quickfix/ProtobufQuickfixProvider.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/quickfix/ProtobufQuickfixProvider.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/resource/ProtobufServiceProvider.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/resource/ProtobufServiceProvider.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/resource/ProtobufStorage2UriMapper.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/resource/ProtobufStorage2UriMapper.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/resource/ResourceVerifier.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/resource/ResourceVerifier.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/resource/XtextResourceFactory.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/resource/XtextResourceFactory.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/scoping/FileSystemPathResolver.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/scoping/FileSystemPathResolver.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/scoping/ImportResolver.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/scoping/ImportResolver.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/scoping/MultipleDirectoriesUriResolver.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/scoping/MultipleDirectoriesUriResolver.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/scoping/ResourceLocations.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/scoping/ResourceLocations.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/scoping/SingleDirectoryUriResolver.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/scoping/SingleDirectoryUriResolver.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/scoping/UriResolver.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/scoping/UriResolver.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/scoping/UriResolverHelper.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/scoping/UriResolverHelper.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/util/CommaSeparatedValues.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/util/CommaSeparatedValues.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/util/Editors.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/util/Editors.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/util/IPaths.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/util/IPaths.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/util/IProjects.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/util/IProjects.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/util/IStatusFactory.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/util/IStatusFactory.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/util/Workbenches.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/util/Workbenches.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/util/editor/ChangedLineRegionCalculator.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/util/editor/ChangedLineRegionCalculator.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/util/editor/LineComparator.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/util/editor/LineComparator.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/util/editor/Messages.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/util/editor/Messages.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/util/editor/Messages.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/util/editor/Messages.properties
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/validation/AbstractPartListener.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/validation/AbstractPartListener.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/validation/MarkerTypes.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/validation/MarkerTypes.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/validation/ProtobufMarkerTypeProvider.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/validation/ProtobufMarkerTypeProvider.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/validation/ProtobufValidation.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/validation/ProtobufValidation.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/validation/ValidationTrigger.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/validation/ValidationTrigger.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/wizards/Messages.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/wizards/Messages.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/wizards/Messages.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/wizards/Messages.properties
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/wizards/NewProtoFileWizard.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/wizards/NewProtoFileWizard.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/wizards/NewProtoFileWizardPage.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf.ui/src/com/google/eclipse/protobuf/ui/wizards/NewProtoFileWizardPage.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/.antlr-generator-3.2.0.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/.antlr-generator-3.2.0.jar
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/.classpath:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/.classpath
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/.gitignore
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/.project:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/.project
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/.settings/com.google.eclipse.protobuf.Protobuf.prefs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/.settings/com.google.eclipse.protobuf.Protobuf.prefs
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/.settings/org.eclipse.jdt.core.prefs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/.settings/org.eclipse.jdt.core.prefs
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/.settings/org.eclipse.jdt.ui.prefs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/.settings/org.eclipse.jdt.ui.prefs
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/META-INF/MANIFEST.MF:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/META-INF/MANIFEST.MF
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/OSGI-INF/l10n/bundle.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/OSGI-INF/l10n/bundle.properties
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/build.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/build.properties
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/descriptor.proto:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/descriptor.proto
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/plugin.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/plugin.xml
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/schema/descriptor-source.exsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/schema/descriptor-source.exsd
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src-gen/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src-gen/.gitignore
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/GenerateProtobuf.mwe2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/GenerateProtobuf.mwe2
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/Protobuf.xtext:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/Protobuf.xtext
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/ProtobufEcorePostProcessor.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/ProtobufEcorePostProcessor.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/ProtobufGenerator.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/ProtobufGenerator.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/ProtobufRuntimeModule.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/ProtobufRuntimeModule.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/ProtobufStandaloneSetup.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/ProtobufStandaloneSetup.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/conversion/DOUBLEValueConverter.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/conversion/DOUBLEValueConverter.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/conversion/HEXValueConverter.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/conversion/HEXValueConverter.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/conversion/LONGValueConverter.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/conversion/LONGValueConverter.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/conversion/ProtobufTerminalConverters.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/conversion/ProtobufTerminalConverters.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/formatting/ProtobufFormatter.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/formatting/ProtobufFormatter.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/generator/Activator.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/generator/Activator.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/grammar/CommonKeyword.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/grammar/CommonKeyword.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/grammar/Keywords.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/grammar/Keywords.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/linking/ProtobufDiagnostic.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/linking/ProtobufDiagnostic.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/linking/ProtobufResource.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/linking/ProtobufResource.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/INodes.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/INodes.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/Imports.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/Imports.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/IndexRanges.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/IndexRanges.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/IndexedElements.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/IndexedElements.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/Literals.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/Literals.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/MessageFields.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/MessageFields.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/Messages.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/Messages.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/ModelObjects.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/ModelObjects.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/OptionFields.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/OptionFields.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/Options.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/Options.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/Packages.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/Packages.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/Protobufs.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/Protobufs.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/QualifiedNames.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/QualifiedNames.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/Resources.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/Resources.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/StringLiterals.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/StringLiterals.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/Syntaxes.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/Syntaxes.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/TypeExtensions.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/model/util/TypeExtensions.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/naming/IProtobufQualifiedNameProvider.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/naming/IProtobufQualifiedNameProvider.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/naming/LocalNamesProvider.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/naming/LocalNamesProvider.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/naming/NameResolver.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/naming/NameResolver.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/naming/NameType.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/naming/NameType.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/naming/NamingStrategy.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/naming/NamingStrategy.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/naming/NormalNamingStrategy.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/naming/NormalNamingStrategy.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/naming/OptionNamingStrategy.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/naming/OptionNamingStrategy.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/naming/ProtobufQualifiedNameConverter.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/naming/ProtobufQualifiedNameConverter.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/naming/ProtobufQualifiedNameProvider.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/naming/ProtobufQualifiedNameProvider.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/parser/UnknownSyntaxProtobuf.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/parser/UnknownSyntaxProtobuf.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/preferences/DefaultPreservingInitializer.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/preferences/DefaultPreservingInitializer.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/preferences/general/GeneralPreferences.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/preferences/general/GeneralPreferences.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/preferences/general/PreferenceNames.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/preferences/general/PreferenceNames.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/resource/FastXtextResourceSet.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/resource/FastXtextResourceSet.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/resource/GlobalResourceServiceProvider.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/resource/GlobalResourceServiceProvider.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/resource/IResourceVerifier.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/resource/IResourceVerifier.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/resource/IndexLookup.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/resource/IndexLookup.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/resource/ResourceSets.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/resource/ResourceSets.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/scoping/ExtensionRegistryProvider.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/scoping/ExtensionRegistryProvider.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/scoping/IImportResolver.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/scoping/IImportResolver.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/scoping/IUriResolver.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/scoping/IUriResolver.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/scoping/OptionType.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/scoping/OptionType.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/scoping/ProtoDescriptorProvider.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/scoping/ProtoDescriptorProvider.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/scoping/ProtobufCaseInsensitivityHelper.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/scoping/ProtobufCaseInsensitivityHelper.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/scoping/ProtobufImportNamespacesScopingFragment.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/scoping/ProtobufImportNamespacesScopingFragment.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/scoping/ProtobufImportNamespacesScopingFragment.xpt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/scoping/ProtobufImportNamespacesScopingFragment.xpt
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/scoping/ProtobufImportScope.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/scoping/ProtobufImportScope.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/scoping/ProtobufImportUriGlobalScopeProvider.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/scoping/ProtobufImportUriGlobalScopeProvider.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/scoping/ProtobufImportedNamespaceAwareLocalScopeProvider.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/scoping/ProtobufImportedNamespaceAwareLocalScopeProvider.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/scoping/ProtobufScopeProvider.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/scoping/ProtobufScopeProvider.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/scoping/ProtobufSelectableBasedScope.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/scoping/ProtobufSelectableBasedScope.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/util/CommonWords.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/util/CommonWords.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/util/EResources.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/util/EResources.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/util/Encodings.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/util/Encodings.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/util/StringLists.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/util/StringLists.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/util/Strings.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/util/Strings.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/util/SystemProperties.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/util/SystemProperties.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/util/TimingCollector.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/util/TimingCollector.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/util/Tracer.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/util/Tracer.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/util/Uris.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/util/Uris.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/util/Workspaces.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/util/Workspaces.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/validation/DataTypeValidator.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/validation/DataTypeValidator.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/validation/ImportValidator.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/validation/ImportValidator.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/validation/Messages.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/validation/Messages.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/validation/Messages.properties:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/validation/Messages.properties
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/validation/ProtobufJavaValidator.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/validation/ProtobufJavaValidator.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/validation/ProtobufResourceValidator.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/validation/ProtobufResourceValidator.java
--------------------------------------------------------------------------------
/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/validation/ProtobufSyntaxErrorMessageProvider.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/com.google.eclipse.protobuf/src/com/google/eclipse/protobuf/validation/ProtobufSyntaxErrorMessageProvider.java
--------------------------------------------------------------------------------
/releng/.project:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/releng/.project
--------------------------------------------------------------------------------
/releng/GenerateProtobuf.mwe2.launch:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/releng/GenerateProtobuf.mwe2.launch
--------------------------------------------------------------------------------
/releng/ProtobufEditor.setup:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/protobuf-dt/HEAD/releng/ProtobufEditor.setup
--------------------------------------------------------------------------------