├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── com.typesafe.hocon.releng └── pom.xml ├── com.typesafe.hocon.sdk ├── .project ├── build.properties ├── feature.xml └── pom.xml ├── com.typesafe.hocon.tests ├── .classpath ├── .project ├── META-INF │ └── MANIFEST.MF ├── build.properties ├── pom.xml └── src │ └── com │ └── typesafe │ └── hocon │ └── parser │ └── ParserTest.xtend ├── com.typesafe.hocon.ui ├── .classpath ├── .project ├── META-INF │ └── MANIFEST.MF ├── build.properties ├── plugin.xml ├── plugin.xml_gen ├── pom.xml └── src │ └── com │ └── typesafe │ └── config │ └── ui │ ├── HoconUiModule.java │ ├── contentassist │ └── HoconProposalProvider.xtend │ ├── labeling │ ├── HoconDescriptionLabelProvider.xtend │ └── HoconLabelProvider.xtend │ ├── outline │ └── HoconOutlineTreeProvider.xtend │ └── quickfix │ └── HoconQuickfixProvider.xtend ├── com.typesafe.hocon.updatesite ├── category.xml └── pom.xml ├── com.typesafe.hocon ├── .classpath ├── .project ├── META-INF │ └── MANIFEST.MF ├── build.properties ├── plugin.xml ├── plugin.xml_gen ├── pom.xml └── src │ └── com │ └── typesafe │ └── config │ ├── GenerateHocon.mwe2 │ ├── Hocon.xtext │ ├── HoconRuntimeModule.java │ ├── HoconStandaloneSetup.java │ ├── formatting │ └── HoconFormatter.xtend │ ├── generator │ └── HoconGenerator.xtend │ ├── scoping │ └── HoconScopeProvider.xtend │ └── validation │ └── HoconValidator.xtend ├── images └── screenshot.png ├── publish.sh └── pushToBintray.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/README.md -------------------------------------------------------------------------------- /com.typesafe.hocon.releng/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon.releng/pom.xml -------------------------------------------------------------------------------- /com.typesafe.hocon.sdk/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon.sdk/.project -------------------------------------------------------------------------------- /com.typesafe.hocon.sdk/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes =feature.xml 2 | -------------------------------------------------------------------------------- /com.typesafe.hocon.sdk/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon.sdk/feature.xml -------------------------------------------------------------------------------- /com.typesafe.hocon.sdk/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon.sdk/pom.xml -------------------------------------------------------------------------------- /com.typesafe.hocon.tests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon.tests/.classpath -------------------------------------------------------------------------------- /com.typesafe.hocon.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon.tests/.project -------------------------------------------------------------------------------- /com.typesafe.hocon.tests/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon.tests/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /com.typesafe.hocon.tests/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon.tests/build.properties -------------------------------------------------------------------------------- /com.typesafe.hocon.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon.tests/pom.xml -------------------------------------------------------------------------------- /com.typesafe.hocon.tests/src/com/typesafe/hocon/parser/ParserTest.xtend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon.tests/src/com/typesafe/hocon/parser/ParserTest.xtend -------------------------------------------------------------------------------- /com.typesafe.hocon.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon.ui/.classpath -------------------------------------------------------------------------------- /com.typesafe.hocon.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon.ui/.project -------------------------------------------------------------------------------- /com.typesafe.hocon.ui/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon.ui/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /com.typesafe.hocon.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon.ui/build.properties -------------------------------------------------------------------------------- /com.typesafe.hocon.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon.ui/plugin.xml -------------------------------------------------------------------------------- /com.typesafe.hocon.ui/plugin.xml_gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon.ui/plugin.xml_gen -------------------------------------------------------------------------------- /com.typesafe.hocon.ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon.ui/pom.xml -------------------------------------------------------------------------------- /com.typesafe.hocon.ui/src/com/typesafe/config/ui/HoconUiModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon.ui/src/com/typesafe/config/ui/HoconUiModule.java -------------------------------------------------------------------------------- /com.typesafe.hocon.ui/src/com/typesafe/config/ui/contentassist/HoconProposalProvider.xtend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon.ui/src/com/typesafe/config/ui/contentassist/HoconProposalProvider.xtend -------------------------------------------------------------------------------- /com.typesafe.hocon.ui/src/com/typesafe/config/ui/labeling/HoconDescriptionLabelProvider.xtend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon.ui/src/com/typesafe/config/ui/labeling/HoconDescriptionLabelProvider.xtend -------------------------------------------------------------------------------- /com.typesafe.hocon.ui/src/com/typesafe/config/ui/labeling/HoconLabelProvider.xtend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon.ui/src/com/typesafe/config/ui/labeling/HoconLabelProvider.xtend -------------------------------------------------------------------------------- /com.typesafe.hocon.ui/src/com/typesafe/config/ui/outline/HoconOutlineTreeProvider.xtend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon.ui/src/com/typesafe/config/ui/outline/HoconOutlineTreeProvider.xtend -------------------------------------------------------------------------------- /com.typesafe.hocon.ui/src/com/typesafe/config/ui/quickfix/HoconQuickfixProvider.xtend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon.ui/src/com/typesafe/config/ui/quickfix/HoconQuickfixProvider.xtend -------------------------------------------------------------------------------- /com.typesafe.hocon.updatesite/category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon.updatesite/category.xml -------------------------------------------------------------------------------- /com.typesafe.hocon.updatesite/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon.updatesite/pom.xml -------------------------------------------------------------------------------- /com.typesafe.hocon/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon/.classpath -------------------------------------------------------------------------------- /com.typesafe.hocon/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon/.project -------------------------------------------------------------------------------- /com.typesafe.hocon/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /com.typesafe.hocon/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon/build.properties -------------------------------------------------------------------------------- /com.typesafe.hocon/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon/plugin.xml -------------------------------------------------------------------------------- /com.typesafe.hocon/plugin.xml_gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon/plugin.xml_gen -------------------------------------------------------------------------------- /com.typesafe.hocon/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon/pom.xml -------------------------------------------------------------------------------- /com.typesafe.hocon/src/com/typesafe/config/GenerateHocon.mwe2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon/src/com/typesafe/config/GenerateHocon.mwe2 -------------------------------------------------------------------------------- /com.typesafe.hocon/src/com/typesafe/config/Hocon.xtext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon/src/com/typesafe/config/Hocon.xtext -------------------------------------------------------------------------------- /com.typesafe.hocon/src/com/typesafe/config/HoconRuntimeModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon/src/com/typesafe/config/HoconRuntimeModule.java -------------------------------------------------------------------------------- /com.typesafe.hocon/src/com/typesafe/config/HoconStandaloneSetup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon/src/com/typesafe/config/HoconStandaloneSetup.java -------------------------------------------------------------------------------- /com.typesafe.hocon/src/com/typesafe/config/formatting/HoconFormatter.xtend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon/src/com/typesafe/config/formatting/HoconFormatter.xtend -------------------------------------------------------------------------------- /com.typesafe.hocon/src/com/typesafe/config/generator/HoconGenerator.xtend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon/src/com/typesafe/config/generator/HoconGenerator.xtend -------------------------------------------------------------------------------- /com.typesafe.hocon/src/com/typesafe/config/scoping/HoconScopeProvider.xtend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon/src/com/typesafe/config/scoping/HoconScopeProvider.xtend -------------------------------------------------------------------------------- /com.typesafe.hocon/src/com/typesafe/config/validation/HoconValidator.xtend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/com.typesafe.hocon/src/com/typesafe/config/validation/HoconValidator.xtend -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/publish.sh -------------------------------------------------------------------------------- /pushToBintray.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragos/typesafe-config-eclipse/HEAD/pushToBintray.sh --------------------------------------------------------------------------------