├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ └── run-maven-tests.yml ├── .gitignore ├── .projectKnowledge ├── JCPreprocessor.mmd └── documap.mmd ├── LICENSE ├── README.md ├── assets ├── arthur_sanctuary_banner.png ├── banner.png ├── documap.png └── logo.svg ├── changelog.txt ├── jcp-tests ├── extlibs │ └── gradle-tooling-api-5.1.jar ├── jcp-test-android │ ├── app │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── android │ │ │ │ └── it │ │ │ │ └── igormaznitsa │ │ │ │ └── com │ │ │ │ └── jcpandroid │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── android │ │ │ │ │ └── it │ │ │ │ │ └── igormaznitsa │ │ │ │ │ └── com │ │ │ │ │ └── jcpandroid │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── utils │ │ │ │ │ └── Utils.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ └── content_main.xml │ │ │ │ ├── menu │ │ │ │ └── menu_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── android │ │ │ └── it │ │ │ └── igormaznitsa │ │ │ └── com │ │ │ └── jcpandroid │ │ │ ├── ExampleUnitTest.java │ │ │ └── utils │ │ │ └── UtilsTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── local.properties │ ├── pom.xml │ └── settings.gradle ├── jcp-test-ant │ ├── pom.xml │ └── src │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── igormaznitsa │ │ │ └── jcp │ │ │ └── it │ │ │ └── ant │ │ │ └── TestAntTaskResult.java │ │ └── resources │ │ ├── build.xml │ │ ├── config.cfg │ │ └── src │ │ └── com │ │ └── igormaznitsa │ │ └── dummyproject │ │ └── main.java ├── jcp-test-gradle-6 │ ├── build.gradle │ ├── configFile.txt │ ├── pom.xml │ ├── settings.gradle │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── igormaznitsa │ │ │ └── jcp │ │ │ └── it │ │ │ └── gradle │ │ │ ├── Main.java │ │ │ └── Some.java │ │ └── test │ │ └── java │ │ └── com │ │ └── igormaznitsa │ │ └── jcp │ │ └── it │ │ └── gradle │ │ └── TestMain.java ├── jcp-test-gradle-7 │ ├── build.gradle │ ├── configFile.txt │ ├── pom.xml │ ├── settings.gradle │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── igormaznitsa │ │ │ └── jcp │ │ │ └── it │ │ │ └── gradle │ │ │ ├── Main.java │ │ │ └── Some.java │ │ └── test │ │ └── java │ │ └── com │ │ └── igormaznitsa │ │ └── jcp │ │ └── it │ │ └── gradle │ │ └── TestMain.java ├── jcp-test-gradle-8 │ ├── build.gradle │ ├── configFile.txt │ ├── pom.xml │ ├── settings.gradle │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── igormaznitsa │ │ │ └── jcp │ │ │ └── it │ │ │ └── gradle │ │ │ ├── Main.java │ │ │ └── Some.java │ │ └── test │ │ └── java │ │ └── com │ │ └── igormaznitsa │ │ └── jcp │ │ └── it │ │ └── gradle │ │ └── TestMain.java ├── jcp-test-gradle-9 │ ├── build.gradle │ ├── configFile.txt │ ├── pom.xml │ ├── settings.gradle │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── igormaznitsa │ │ │ └── jcp │ │ │ └── it │ │ │ └── gradle │ │ │ ├── Main.java │ │ │ └── Some.java │ │ └── test │ │ └── java │ │ └── com │ │ └── igormaznitsa │ │ └── jcp │ │ └── it │ │ └── gradle │ │ └── TestMain.java ├── jcp-test-javassist │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── igormaznitsa │ │ │ └── jcp │ │ │ └── it │ │ │ └── test │ │ │ ├── JavassistMain.java │ │ │ ├── Javassistable.java │ │ │ └── Main.java │ │ └── test │ │ └── java │ │ └── com │ │ └── igormaznitsa │ │ └── jcp │ │ └── it │ │ └── test │ │ └── JavassistableTest.java ├── jcp-test-jep238 │ ├── pom.jdk9.xml │ ├── pom.xml │ └── src │ │ ├── assembly │ │ └── assembly.xml │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── igormaznitsa │ │ │ └── tests │ │ │ ├── JDK9APIClass.java │ │ │ ├── Main.java │ │ │ └── OldJavaClass.java │ │ └── test │ │ └── java │ │ └── com │ │ └── igormaznitsa │ │ └── tests │ │ ├── JDK9APIClassTest.java │ │ └── OldJavaClassTest.java ├── jcp-test-maven-action │ ├── jcp-test-maven-action-action │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── igormaznitsa │ │ │ └── jcp │ │ │ └── it │ │ │ └── CustomPreprocessorExtension.java │ ├── jcp-test-maven-action-plugin-call │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── igormaznitsa │ │ │ │ └── jcp │ │ │ │ └── it │ │ │ │ └── Main.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── igormaznitsa │ │ │ └── jcp │ │ │ └── it │ │ │ └── MainTest.java │ └── pom.xml ├── jcp-test-maven │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── igormaznitsa │ │ │ └── jcp │ │ │ └── it │ │ │ └── maven │ │ │ └── Main.java │ │ └── test │ │ └── java │ │ └── com │ │ └── igormaznitsa │ │ └── jcp │ │ └── it │ │ └── maven │ │ └── TestMain.java ├── jcp-test-static-site │ ├── pom.xml │ └── src │ │ ├── main │ │ └── resources │ │ │ ├── about.htm │ │ │ ├── cc.gif │ │ │ ├── cc_lft.jpg │ │ │ ├── cc_rght.jpg │ │ │ ├── channels.xml │ │ │ ├── cmn │ │ │ ├── sendfeedback.phtml │ │ │ ├── styles.css │ │ │ └── styles2.css │ │ │ ├── contacts.htm │ │ │ ├── devices.xml │ │ │ ├── eng │ │ │ ├── send_error.html │ │ │ └── send_ok.html │ │ │ ├── gamelist.htm │ │ │ ├── gameref.htm │ │ │ ├── games.htm │ │ │ ├── games.xml │ │ │ ├── games │ │ │ ├── airaggression_scr1.gif │ │ │ ├── airaggression_scr2.gif │ │ │ ├── airaggression_scr3.gif │ │ │ ├── airaggression_splash.jpg │ │ │ ├── airboil_scr1.gif │ │ │ ├── airboil_scr2.gif │ │ │ ├── airboil_scr3.gif │ │ │ ├── airboil_splash.jpg │ │ │ ├── aneks_ny2006_scr1.gif │ │ │ ├── aneks_ny2006_scr2.gif │ │ │ ├── aneks_ny2006_scr3.gif │ │ │ ├── aneks_ny2006_splash.jpg │ │ │ ├── blazinggears_scr1.gif │ │ │ ├── blazinggears_scr2.gif │ │ │ ├── blazinggears_scr3.gif │ │ │ ├── blazinggears_splash.jpg │ │ │ ├── caspianmonster_scr1.gif │ │ │ ├── caspianmonster_scr2.gif │ │ │ ├── caspianmonster_scr3.gif │ │ │ ├── caspianmonster_splash.jpg │ │ │ ├── castleassault_scr1.gif │ │ │ ├── castleassault_scr2.gif │ │ │ ├── castleassault_scr3.gif │ │ │ ├── castleassault_splash.jpg │ │ │ ├── cockroach_scr1.gif │ │ │ ├── cockroach_scr2.gif │ │ │ ├── cockroach_scr3.gif │ │ │ ├── cockroach_splash.jpg │ │ │ ├── coconutsfall_scr1.gif │ │ │ ├── coconutsfall_scr2.gif │ │ │ ├── coconutsfall_scr3.gif │ │ │ ├── coconutsfall_splash.jpg │ │ │ ├── conecone_scr1.gif │ │ │ ├── conecone_scr2.gif │ │ │ ├── conecone_scr3.gif │ │ │ ├── conecone_splash.jpg │ │ │ ├── copterbomber_scr1.gif │ │ │ ├── copterbomber_scr2.gif │ │ │ ├── copterbomber_scr3.gif │ │ │ ├── copterbomber_splash.jpg │ │ │ ├── drunkman_scr1.gif │ │ │ ├── drunkman_scr2.gif │ │ │ ├── drunkman_scr3.gif │ │ │ ├── drunkman_splash.jpg │ │ │ ├── firingline_scr1.gif │ │ │ ├── firingline_scr2.gif │ │ │ ├── firingline_scr3.gif │ │ │ ├── firingline_splash.jpg │ │ │ ├── fisher_scr1.gif │ │ │ ├── fisher_scr2.gif │ │ │ ├── fisher_scr3.gif │ │ │ ├── fisher_splash.jpg │ │ │ ├── fruitmania_scr1.gif │ │ │ ├── fruitmania_scr2.gif │ │ │ ├── fruitmania_scr3.gif │ │ │ ├── fruitmania_splash.jpg │ │ │ ├── games2003_2006.html │ │ │ ├── hardday_scr1.gif │ │ │ ├── hardday_scr2.gif │ │ │ ├── hardday_scr3.gif │ │ │ ├── hardday_splash.jpg │ │ │ ├── hunt_scr1.gif │ │ │ ├── hunt_scr2.gif │ │ │ ├── hunt_scr3.gif │ │ │ ├── hunt_splash.jpg │ │ │ ├── icegifts_scr1.gif │ │ │ ├── icegifts_scr2.gif │ │ │ ├── icegifts_scr3.gif │ │ │ ├── icegifts_splash.jpg │ │ │ ├── ironstream_scr1.gif │ │ │ ├── ironstream_scr2.gif │ │ │ ├── ironstream_scr3.gif │ │ │ ├── ironstream_splash.jpg │ │ │ ├── kalah_scr1.gif │ │ │ ├── kalah_scr2.gif │ │ │ ├── kalah_scr3.gif │ │ │ ├── kalah_splash.jpg │ │ │ ├── kickkick_scr1.gif │ │ │ ├── kickkick_scr2.gif │ │ │ ├── kickkick_scr3.gif │ │ │ ├── kickkick_splash.jpg │ │ │ ├── lifesaver_scr1.gif │ │ │ ├── lifesaver_scr2.gif │ │ │ ├── lifesaver_scr3.gif │ │ │ ├── lifesaver_splash.jpg │ │ │ ├── livebridge_scr1.gif │ │ │ ├── livebridge_scr2.gif │ │ │ ├── livebridge_scr3.gif │ │ │ ├── livebridge_splash.jpg │ │ │ ├── mobilechase_scr1.gif │ │ │ ├── mobilechase_scr2.gif │ │ │ ├── mobilechase_scr3.gif │ │ │ ├── mobilechase_splash.jpg │ │ │ ├── mobilesheriff_scr1.gif │ │ │ ├── mobilesheriff_scr2.gif │ │ │ ├── mobilesheriff_scr3.gif │ │ │ ├── mobilesheriff_splash.jpg │ │ │ ├── mtvpaparazzo_scr1.gif │ │ │ ├── mtvpaparazzo_scr2.gif │ │ │ ├── mtvpaparazzo_scr3.gif │ │ │ ├── mtvpaparazzo_splash.jpg │ │ │ ├── mtvpillow_scr1.gif │ │ │ ├── mtvpillow_scr2.gif │ │ │ ├── mtvpillow_scr3.gif │ │ │ ├── mtvpillow_splash.jpg │ │ │ ├── mtvpuzzle_scr1.gif │ │ │ ├── mtvpuzzle_scr2.gif │ │ │ ├── mtvpuzzle_scr3.gif │ │ │ ├── mtvpuzzle_splash.jpg │ │ │ ├── mtvstage_scr1.gif │ │ │ ├── mtvstage_scr2.gif │ │ │ ├── mtvstage_scr3.gif │ │ │ ├── mtvstage_splash.jpg │ │ │ ├── nimble_scr1.gif │ │ │ ├── nimble_scr2.gif │ │ │ ├── nimble_scr3.gif │ │ │ ├── nimble_splash.jpg │ │ │ ├── opthunderclap_scr1.gif │ │ │ ├── opthunderclap_scr2.gif │ │ │ ├── opthunderclap_scr3.gif │ │ │ ├── opthunderclap_splash.jpg │ │ │ ├── oysterbank_scr1.gif │ │ │ ├── oysterbank_scr2.gif │ │ │ ├── oysterbank_scr3.gif │ │ │ ├── oysterbank_splash.jpg │ │ │ ├── papaninsquest_scr1.gif │ │ │ ├── papaninsquest_scr2.gif │ │ │ ├── papaninsquest_scr3.gif │ │ │ ├── papaninsquest_splash.jpg │ │ │ ├── ravenscheese_scr1.gif │ │ │ ├── ravenscheese_scr2.gif │ │ │ ├── ravenscheese_scr3.gif │ │ │ ├── ravenscheese_splash.jpg │ │ │ ├── searoad_scr1.gif │ │ │ ├── searoad_scr2.gif │ │ │ ├── searoad_scr3.gif │ │ │ ├── searoad_splash.jpg │ │ │ ├── searovers_scr1.gif │ │ │ ├── searovers_scr2.gif │ │ │ ├── searovers_scr3.gif │ │ │ ├── searovers_splash.jpg │ │ │ ├── slider_alpop_scr1.gif │ │ │ ├── slider_alpop_scr2.gif │ │ │ ├── slider_alpop_scr3.gif │ │ │ ├── slider_alpop_splash.jpg │ │ │ ├── smashingkick_scr1.gif │ │ │ ├── smashingkick_scr2.gif │ │ │ ├── smashingkick_scr3.gif │ │ │ ├── smashingkick_splash.jpg │ │ │ ├── smscat_scr1.gif │ │ │ ├── smscat_scr2.gif │ │ │ ├── smscat_scr3.gif │ │ │ ├── smscat_splash.jpg │ │ │ ├── spiders_scr1.gif │ │ │ ├── spiders_scr2.gif │ │ │ ├── spiders_scr3.gif │ │ │ ├── spiders_splash.jpg │ │ │ ├── starharbor_scr1.gif │ │ │ ├── starharbor_scr2.gif │ │ │ ├── starharbor_scr3.gif │ │ │ ├── starharbor_splash.jpg │ │ │ ├── strangehunt_scr1.gif │ │ │ ├── strangehunt_scr2.gif │ │ │ ├── strangehunt_scr3.gif │ │ │ ├── strangehunt_splash.jpg │ │ │ ├── tastydish_scr1.gif │ │ │ ├── tastydish_scr2.gif │ │ │ ├── tastydish_scr3.gif │ │ │ ├── tastydish_splash.jpg │ │ │ ├── vineyard_scr1.gif │ │ │ ├── vineyard_scr2.gif │ │ │ ├── vineyard_scr3.gif │ │ │ ├── vineyard_splash.jpg │ │ │ ├── waterway_scr1.gif │ │ │ ├── waterway_scr2.gif │ │ │ ├── waterway_scr3.gif │ │ │ ├── waterway_splash.jpg │ │ │ ├── wildballs_scr1.gif │ │ │ ├── wildballs_scr2.gif │ │ │ ├── wildballs_scr3.gif │ │ │ ├── wildballs_splash.jpg │ │ │ ├── wildroad_scr1.gif │ │ │ ├── wildroad_scr2.gif │ │ │ ├── wildroad_scr3.gif │ │ │ └── wildroad_splash.jpg │ │ │ ├── hotnews.htm │ │ │ ├── hotnews.xml │ │ │ ├── i_icon.gif │ │ │ ├── index.htm │ │ │ ├── job.htm │ │ │ ├── ledoff.gif │ │ │ ├── ledon.gif │ │ │ ├── loadpages │ │ │ ├── muzon_AirBoil.htm │ │ │ └── muzon_StarHarbor.htm │ │ │ ├── logos │ │ │ ├── bee_logo.gif │ │ │ ├── infon.gif │ │ │ ├── mega_logo.gif │ │ │ ├── mts_logo.gif │ │ │ ├── muzon.gif │ │ │ ├── nikita.gif │ │ │ ├── playmobile.gif │ │ │ └── simone.gif │ │ │ ├── main.htm │ │ │ ├── news.htm │ │ │ ├── news.xml │ │ │ ├── partnership.htm │ │ │ ├── rus │ │ │ ├── send_error.html │ │ │ └── send_ok.html │ │ │ ├── site.xml │ │ │ ├── undercon.gif │ │ │ └── wap │ │ │ ├── index.wml │ │ │ └── logo.wbmp │ │ └── test │ │ └── java │ │ └── com │ │ └── igormaznitsa │ │ └── jcp │ │ └── it │ │ └── test │ │ └── TestSite.java └── pom.xml ├── jcp ├── pom.xml └── src │ ├── assemble │ └── bundle.xml │ ├── main │ ├── java │ │ └── com │ │ │ └── igormaznitsa │ │ │ └── jcp │ │ │ ├── InfoHelper.java │ │ │ ├── JcpPreprocessor.java │ │ │ ├── ant │ │ │ └── PreprocessTask.java │ │ │ ├── cmdline │ │ │ ├── ActionPreprocessorExtensionHandler.java │ │ │ ├── AllowMergeBlockLineHandler.java │ │ │ ├── AllowWhitespaceDirectiveHandler.java │ │ │ ├── CareForLastEolHandler.java │ │ │ ├── ClearTargetHandler.java │ │ │ ├── CommandLineHandler.java │ │ │ ├── DestinationDirectoryHandler.java │ │ │ ├── DontOverwriteSameContentHandler.java │ │ │ ├── ExcludeFoldersHandler.java │ │ │ ├── ExcludedFileExtensionsHandler.java │ │ │ ├── FileExtensionsHandler.java │ │ │ ├── GlobalVariableDefiningFileHandler.java │ │ │ ├── GlobalVariableHandler.java │ │ │ ├── HelpHandler.java │ │ │ ├── InCharsetHandler.java │ │ │ ├── KeepAttributesHandler.java │ │ │ ├── KeepCommentsHandler.java │ │ │ ├── KeepLineHandler.java │ │ │ ├── OutCharsetHandler.java │ │ │ ├── PreserveIndentDirectiveHandler.java │ │ │ ├── RemoveCommentsHandler.java │ │ │ ├── SourceDirectoryHandler.java │ │ │ ├── UnknownAsFalseHandler.java │ │ │ └── VerboseHandler.java │ │ │ ├── containers │ │ │ ├── FileInfoContainer.java │ │ │ ├── PreprocessingFlag.java │ │ │ └── TextFileDataContainer.java │ │ │ ├── context │ │ │ ├── CommentRemoverType.java │ │ │ ├── CommentTextProcessor.java │ │ │ ├── EnvironmentVariableProcessor.java │ │ │ ├── ExecutionAllowable.java │ │ │ ├── JCPSpecialVariableProcessor.java │ │ │ ├── PreprocessingState.java │ │ │ ├── PreprocessorContext.java │ │ │ ├── PreprocessorContextAware.java │ │ │ └── SpecialVariableProcessor.java │ │ │ ├── directives │ │ │ ├── AbortDirectiveHandler.java │ │ │ ├── AbstractDirectiveHandler.java │ │ │ ├── ActionDirectiveHandler.java │ │ │ ├── AfterDirectiveProcessingBehaviour.java │ │ │ ├── BreakDirectiveHandler.java │ │ │ ├── CommentNextLineDirectiveHandler.java │ │ │ ├── ContinueDirectiveHandler.java │ │ │ ├── DefineDirectiveHandler.java │ │ │ ├── DefinelDirectiveHandler.java │ │ │ ├── DirectiveArgumentType.java │ │ │ ├── EchoDirectiveHandler.java │ │ │ ├── ElseDirectiveHandler.java │ │ │ ├── EndDirectiveHandler.java │ │ │ ├── EndIfDirectiveHandler.java │ │ │ ├── ErrorDirectiveHandler.java │ │ │ ├── ExcludeIfDirectiveHandler.java │ │ │ ├── ExitDirectiveHandler.java │ │ │ ├── ExitIfDirectiveHandler.java │ │ │ ├── FlushDirectiveHandler.java │ │ │ ├── GlobalDirectiveHandler.java │ │ │ ├── GlobalElseDirectiveHandler.java │ │ │ ├── GlobalEndIfDirectiveHandler.java │ │ │ ├── GlobalIfDirectiveHandler.java │ │ │ ├── IfDefDirectiveHandler.java │ │ │ ├── IfDefinedDirectiveHandler.java │ │ │ ├── IfDirectiveHandler.java │ │ │ ├── IfNDefDirectiveHandler.java │ │ │ ├── IncludeDirectiveHandler.java │ │ │ ├── LocalDirectiveHandler.java │ │ │ ├── MsgDirectiveHandler.java │ │ │ ├── NoAutoFlushHandler.java │ │ │ ├── OutDisabledDirectiveHandler.java │ │ │ ├── OutEnabledDirectiveHandler.java │ │ │ ├── OutNameDirectiveHandler.java │ │ │ ├── OutdirDirectiveHandler.java │ │ │ ├── PostfixDirectiveHandler.java │ │ │ ├── PrefixDirectiveHandler.java │ │ │ ├── UndefDirectiveHandler.java │ │ │ ├── WarningDirectiveHandler.java │ │ │ └── WhileDirectiveHandler.java │ │ │ ├── exceptions │ │ │ ├── FilePositionInfo.java │ │ │ └── PreprocessorException.java │ │ │ ├── expression │ │ │ ├── Expression.java │ │ │ ├── ExpressionItem.java │ │ │ ├── ExpressionItemPriority.java │ │ │ ├── ExpressionItemType.java │ │ │ ├── ExpressionParser.java │ │ │ ├── ExpressionTree.java │ │ │ ├── ExpressionTreeElement.java │ │ │ ├── Value.java │ │ │ ├── ValueType.java │ │ │ ├── Variable.java │ │ │ ├── functions │ │ │ │ ├── AbstractFunction.java │ │ │ │ ├── AbstractStrConverter.java │ │ │ │ ├── FunctionABS.java │ │ │ │ ├── FunctionBINFILE.java │ │ │ │ ├── FunctionDefinedByUser.java │ │ │ │ ├── FunctionESC.java │ │ │ │ ├── FunctionEVALFILE.java │ │ │ │ ├── FunctionIS.java │ │ │ │ ├── FunctionISSUBSTR.java │ │ │ │ ├── FunctionROUND.java │ │ │ │ ├── FunctionSTR2CSV.java │ │ │ │ ├── FunctionSTR2GO.java │ │ │ │ ├── FunctionSTR2INT.java │ │ │ │ ├── FunctionSTR2JAVA.java │ │ │ │ ├── FunctionSTR2JS.java │ │ │ │ ├── FunctionSTR2JSON.java │ │ │ │ ├── FunctionSTR2WEB.java │ │ │ │ ├── FunctionSTR2XML.java │ │ │ │ ├── FunctionSTRLEN.java │ │ │ │ ├── FunctionTRIMLINES.java │ │ │ │ └── xml │ │ │ │ │ ├── AbstractXMLFunction.java │ │ │ │ │ ├── FunctionXML_ATTR.java │ │ │ │ │ ├── FunctionXML_GET.java │ │ │ │ │ ├── FunctionXML_LIST.java │ │ │ │ │ ├── FunctionXML_NAME.java │ │ │ │ │ ├── FunctionXML_OPEN.java │ │ │ │ │ ├── FunctionXML_ROOT.java │ │ │ │ │ ├── FunctionXML_SIZE.java │ │ │ │ │ ├── FunctionXML_TEXT.java │ │ │ │ │ ├── FunctionXML_XELEMENT.java │ │ │ │ │ ├── FunctionXML_XLIST.java │ │ │ │ │ └── NodeContainer.java │ │ │ └── operators │ │ │ │ ├── AbstractOperator.java │ │ │ │ ├── OperatorADD.java │ │ │ │ ├── OperatorAND.java │ │ │ │ ├── OperatorDIV.java │ │ │ │ ├── OperatorEQU.java │ │ │ │ ├── OperatorGREAT.java │ │ │ │ ├── OperatorGREATEQU.java │ │ │ │ ├── OperatorLESS.java │ │ │ │ ├── OperatorLESSEQU.java │ │ │ │ ├── OperatorMOD.java │ │ │ │ ├── OperatorMUL.java │ │ │ │ ├── OperatorNOT.java │ │ │ │ ├── OperatorNOTEQU.java │ │ │ │ ├── OperatorOR.java │ │ │ │ ├── OperatorSUB.java │ │ │ │ └── OperatorXOR.java │ │ │ ├── extension │ │ │ ├── LogPreprocessorExtension.java │ │ │ └── PreprocessorExtension.java │ │ │ ├── gradle │ │ │ ├── JcpGradlePlugin.java │ │ │ └── JcpTask.java │ │ │ ├── logger │ │ │ ├── PreprocessorLogger.java │ │ │ └── SystemOutLogger.java │ │ │ ├── maven │ │ │ ├── MavenPropertiesImporter.java │ │ │ └── PreprocessMojo.java │ │ │ ├── removers │ │ │ ├── AbstractCommentRemover.java │ │ │ ├── CStyleCommentRemover.java │ │ │ ├── JcpCommentLineRemover.java │ │ │ └── JustCopyRemover.java │ │ │ └── utils │ │ │ ├── AntPathMatcher.java │ │ │ ├── ArrayUtils.java │ │ │ ├── GetUtils.java │ │ │ ├── IOUtils.java │ │ │ ├── PreprocessorUtils.java │ │ │ └── ResettablePrinter.java │ └── resources │ │ ├── META-INF │ │ └── gradle-plugins │ │ │ └── com.igormaznitsa.jcp.properties │ │ ├── com │ │ └── igormaznitsa │ │ │ └── jcp │ │ │ └── ant │ │ │ ├── antlib.xml │ │ │ └── tasks.properties │ │ └── jcpversion.properties │ ├── site │ ├── markdown │ │ ├── examples │ │ │ └── hello-world.md │ │ ├── index.md │ │ └── usage.md │ └── site.xml │ └── test │ ├── java │ └── com │ │ └── igormaznitsa │ │ └── jcp │ │ ├── AbstractMockPreprocessorContextTest.java │ │ ├── AbstractSpyPreprocessorContextTest.java │ │ ├── JCPreprocessorTest.java │ │ ├── TestUtils.java │ │ ├── ant │ │ └── PreprocessTaskTest.java │ │ ├── cmdline │ │ ├── AbstractCommandLineHandlerTest.java │ │ ├── ActionPreprocessorExtensionHandlerTest.java │ │ ├── AllowMergeBlockLineHandlerTest.java │ │ ├── AllowWhitespaceDirectiveHandlerTest.java │ │ ├── CareForLastEolHandlerTest.java │ │ ├── ClearTargetFolderHandlerTest.java │ │ ├── CommentRemoverTypeHandlerTest.java │ │ ├── DestinationDirectoryHandlerTest.java │ │ ├── DontOverwriteSameContentHandlerTest.java │ │ ├── ExcludeFoldersHandlerTest.java │ │ ├── ExcludedFileExtensionsHandlerTest.java │ │ ├── FileExtensionsHandlerTest.java │ │ ├── GlobalVariableDefiningFileHandlerTest.java │ │ ├── GlobalVariableHandlerTest.java │ │ ├── HelpHandlerTest.java │ │ ├── InCharsetHandlerTest.java │ │ ├── KeepLineHandlerTest.java │ │ ├── OutCharsetHandlerTest.java │ │ ├── PreserveIndentDirectiveHandlerTest.java │ │ ├── RemoveCommentsHandlerTest.java │ │ ├── SourceDirectoryHandlerTest.java │ │ ├── UnknownAsFalseHandlerTest.java │ │ └── VerboseHandlerTest.java │ │ ├── context │ │ ├── EnvironmentVariableProcessorTest.java │ │ ├── JCPSpecialVariableProcessorTest.java │ │ ├── PreprocessorContextTest.java │ │ └── ProcessContentWithSpacesAndWithoutTest.java │ │ ├── directives │ │ ├── AbortDirectiveHandlerTest.java │ │ ├── AbstractDirectiveHandlerAcceptanceTest.java │ │ ├── AbstractDirectiveHandlerTest.java │ │ ├── ActionDirectiveHandlerTest.java │ │ ├── CommentNextLineDirectiveHandlerTest.java │ │ ├── DefineDirectiveHandlerTest.java │ │ ├── DefinelDirectiveHandlerTest.java │ │ ├── EchoDirectiveHandlerTest.java │ │ ├── ErrorDirectiveHandlerTest.java │ │ ├── ExcludeIfDirectiveHandlerTest.java │ │ ├── ExitDirectiveHandlerTest.java │ │ ├── ExitIfDirectiveHandlerTest.java │ │ ├── FlushDirectiveHandlerTest.java │ │ ├── GlobalDirectiveHandlerTest.java │ │ ├── GlobalIfElseEndifTest.java │ │ ├── IfDefDirectiveHandlerTest.java │ │ ├── IfDefinedDirectiveHandlerTest.java │ │ ├── IfElseEndifDirectiveHandlerTest.java │ │ ├── IfElseEndifDirectiveWithKeepLinesHandlerTest.java │ │ ├── IfNDefDirectiveHandlerTest.java │ │ ├── IncludeDirectiveHandlerTest.java │ │ ├── LinesNotMatchException.java │ │ ├── LocalDirectiveHandlerTest.java │ │ ├── MsgDirectiveHandlerTest.java │ │ ├── NoAutoFlushDirectiveHandlerTest.java │ │ ├── OnlySpacesTest.java │ │ ├── OutDisabledDirectiveHandlerTest.java │ │ ├── OutEnabledDirectiveHandlerTest.java │ │ ├── OutNameDirectiveHandlerTest.java │ │ ├── OutdirDirectiveHandlerTest.java │ │ ├── PrefixPostfixDirectiveHandlerTest.java │ │ ├── SpecVarsROTest.java │ │ ├── SpecialDirectivesBlockTest.java │ │ ├── SpecialDirectivesTest.java │ │ ├── UndefDirectiveHandlerTest.java │ │ ├── VariablePair.java │ │ ├── WarningDirectiveHandlerTest.java │ │ └── WhileContinueBreakEndDirectiveHandlerTest.java │ │ ├── exceptions │ │ └── PreprocessorExceptionTest.java │ │ ├── expression │ │ ├── ExpressionParserTest.java │ │ ├── ExpressionTest.java │ │ ├── ExpressionTreeTest.java │ │ ├── functions │ │ │ ├── AbstractFunctionTest.java │ │ │ ├── FunctionABSTest.java │ │ │ ├── FunctionBINFILETest.java │ │ │ ├── FunctionDefinedByUserTest.java │ │ │ ├── FunctionESCTest.java │ │ │ ├── FunctionEVALFILETest.java │ │ │ ├── FunctionISSUBSTRTest.java │ │ │ ├── FunctionISTest.java │ │ │ ├── FunctionROUNDTest.java │ │ │ ├── FunctionSTR2CSVTest.java │ │ │ ├── FunctionSTR2GOTest.java │ │ │ ├── FunctionSTR2INTTest.java │ │ │ ├── FunctionSTR2JAVATest.java │ │ │ ├── FunctionSTR2JSONTest.java │ │ │ ├── FunctionSTR2JSTest.java │ │ │ ├── FunctionSTR2WEBTest.java │ │ │ ├── FunctionSTR2XMLTest.java │ │ │ ├── FunctionSTRLENTest.java │ │ │ ├── FunctionTRIMLINESTest.java │ │ │ └── xml │ │ │ │ ├── AbstractFunctionXMLTest.java │ │ │ │ ├── FunctionXML_ATTRTest.java │ │ │ │ ├── FunctionXML_GETTest.java │ │ │ │ ├── FunctionXML_LISTTest.java │ │ │ │ ├── FunctionXML_NAMETest.java │ │ │ │ ├── FunctionXML_OPENTest.java │ │ │ │ ├── FunctionXML_ROOTTest.java │ │ │ │ ├── FunctionXML_SIZETest.java │ │ │ │ ├── FunctionXML_TEXTTest.java │ │ │ │ ├── FunctionXML_XELEMENTTest.java │ │ │ │ └── FunctionXML_XLISTTest.java │ │ └── operators │ │ │ ├── AbstractOperatorTest.java │ │ │ ├── OperatorADDTest.java │ │ │ ├── OperatorANDTest.java │ │ │ ├── OperatorDIVTest.java │ │ │ ├── OperatorEQUTest.java │ │ │ ├── OperatorGREATEQUTest.java │ │ │ ├── OperatorGREATTest.java │ │ │ ├── OperatorLESSEQUTest.java │ │ │ ├── OperatorLESSTest.java │ │ │ ├── OperatorMODTest.java │ │ │ ├── OperatorMULTest.java │ │ │ ├── OperatorNOTEQUTest.java │ │ │ ├── OperatorNOTTest.java │ │ │ ├── OperatorORTest.java │ │ │ ├── OperatorSUBTest.java │ │ │ └── OperatorXORTest.java │ │ ├── maven │ │ ├── MavenPropertiesImporterTest.java │ │ └── PreprocessMojoTest.java │ │ ├── removers │ │ ├── AbstractCommentRemoverTest.java │ │ ├── CStyleCommentsRemoverTest.java │ │ ├── JcpCommentLineRemoverTest.java │ │ └── JustCopyCommentsRemoverTest.java │ │ ├── usecases │ │ ├── AbortTest.java │ │ ├── AbstractUseCaseTest.java │ │ ├── BinFileTest.java │ │ ├── DefUndefTest.java │ │ ├── EvalFileTest.java │ │ ├── ExternalGlobalDefFileTest.java │ │ ├── GenerationTest.java │ │ ├── IncludeAndExitTest.java │ │ ├── InsidePreprocessingTest.java │ │ ├── PrefixPostfixTest.java │ │ ├── PreserveIndentOffTest.java │ │ ├── PreserveIndentOnTest.java │ │ ├── SimpleTest.java │ │ ├── SpacesBeforeDirectivesNotAllowedTest.java │ │ ├── SpacesBeforeDirectivesTest.java │ │ ├── StaticSiteTest.java │ │ ├── Str2JavaTest.java │ │ ├── StringDirectiveTest.java │ │ ├── TextBufferVariablesTest.java │ │ ├── UnknownVarAsFalseTest.java │ │ ├── UsePrefixAsMultilineTest.java │ │ └── UserFunctionTest.java │ │ └── utils │ │ ├── PreprocessorUtilsTest.java │ │ └── antpathmatcher │ │ └── AntPathMatcherTest.java │ └── resources │ └── com │ └── igormaznitsa │ └── jcp │ ├── cmdline │ └── global_variable_def.txt │ ├── context │ ├── spacedFile.txt │ └── standardFile.txt │ ├── directives │ ├── directive_abort.txt │ ├── directive_action.txt │ ├── directive_comment_next_line.txt │ ├── directive_define.txt │ ├── directive_definel.txt │ ├── directive_echo.txt │ ├── directive_error.txt │ ├── directive_excludeif.txt │ ├── directive_exit.txt │ ├── directive_exitif.txt │ ├── directive_global.txt │ ├── directive_globalifelseendif.txt │ ├── directive_globalifelseendif2.txt │ ├── directive_if_else_endif.txt │ ├── directive_if_else_endif_with_keptlines.txt │ ├── directive_ifdef.txt │ ├── directive_ifdefined.txt │ ├── directive_ifndef.txt │ ├── directive_include.txt │ ├── directive_include2.txt │ ├── directive_include3.txt │ ├── directive_local.txt │ ├── directive_msg.txt │ ├── directive_outdir.txt │ ├── directive_outdisabled.txt │ ├── directive_outenabled.txt │ ├── directive_outname.txt │ ├── directive_prefixpostfix.txt │ ├── directive_special.txt │ ├── directive_special_block.txt │ ├── directive_undef.txt │ ├── directive_warning.txt │ ├── directive_while_continue_break_end.txt │ ├── only_spaces.txt │ └── specvars_ro.txt │ ├── exceptions │ ├── wrong_bracket.txt │ ├── wrong_bracket_closing.txt │ └── wrong_bracket_include.txt │ ├── expression │ └── functions │ │ ├── eval │ │ ├── TestBin.txt │ │ ├── TestBinLong.txt │ │ ├── TestEval.java │ │ └── TestEvalWithIncluded.java │ │ └── xml │ │ ├── noxml.txt │ │ └── test.xml │ ├── global_error_at.txt │ ├── global_ok.txt │ ├── maven │ └── test.pom.xml │ ├── removers │ └── java │ │ ├── etalon.etl │ │ └── test_java.ppp │ ├── usecases │ ├── AbortTest │ │ ├── etl │ │ │ └── text.txt │ │ └── src │ │ │ ├── text.txt │ │ │ ├── text1.txt │ │ │ ├── text2.txt │ │ │ └── text3.txt │ ├── BinFileTest │ │ ├── etl │ │ │ └── body.txt │ │ └── src │ │ │ ├── body.txt │ │ │ └── file.bin │ ├── DefUndefTest │ │ ├── etl │ │ │ └── text.txt │ │ └── src │ │ │ └── text.txt │ ├── EvalFileTest │ │ ├── etl │ │ │ └── newfolder │ │ │ │ ├── file1.txt │ │ │ │ └── file2.txt │ │ └── src │ │ │ ├── _file1.txt │ │ │ ├── _file2.txt │ │ │ └── text.txt │ ├── ExternalGlobalDefFileTest │ │ ├── etl │ │ │ └── test.txt │ │ ├── list.cfg │ │ └── src │ │ │ └── test.txt │ ├── GenerationTest │ │ ├── etl │ │ │ ├── file1.ttt │ │ │ ├── file2.ttt │ │ │ └── file3.ttt │ │ └── src │ │ │ └── text.txt │ ├── IncludeAndExitTest │ │ ├── etl │ │ │ └── text.txt │ │ └── src │ │ │ ├── text.txt │ │ │ ├── text1.txt │ │ │ └── text2.txt │ ├── InsidePreprocessingTest │ │ ├── etl │ │ │ └── text.txt │ │ └── src │ │ │ ├── some.txt │ │ │ └── text.txt │ ├── PrefixPostfixTest │ │ ├── etl │ │ │ └── text.txt │ │ └── src │ │ │ └── text.txt │ ├── PreserveIndentOffTest │ │ ├── etl │ │ │ └── text.txt │ │ └── src │ │ │ └── text.txt │ ├── PreserveIndentOnTest │ │ ├── etl │ │ │ └── text.txt │ │ └── src │ │ │ └── text.txt │ ├── SimpleTest │ │ ├── etl │ │ │ └── text.txt │ │ └── src │ │ │ └── text.txt │ ├── SpacesBeforeDirectivesNotAllowedTest │ │ ├── etl │ │ │ └── body.txt │ │ └── src │ │ │ └── body.txt │ ├── SpacesBeforeDirectivesTest │ │ ├── etl │ │ │ └── body.txt │ │ └── src │ │ │ └── body.txt │ ├── StaticSiteTest │ │ ├── etl │ │ │ ├── cc.gif │ │ │ ├── cc_lft.jpg │ │ │ ├── cc_rght.jpg │ │ │ ├── cmn │ │ │ │ ├── sendfeedback.phtml │ │ │ │ ├── styles.css │ │ │ │ └── styles2.css │ │ │ ├── eng │ │ │ │ ├── end.txt │ │ │ │ ├── gpage_airaggression.htm │ │ │ │ ├── gpage_airboil.htm │ │ │ │ ├── gpage_aneks_ny2006.htm │ │ │ │ ├── gpage_blazinggears.htm │ │ │ │ ├── gpage_caspianmonster.htm │ │ │ │ ├── gpage_castleassault.htm │ │ │ │ ├── gpage_cockroach.htm │ │ │ │ ├── gpage_coconutsfall.htm │ │ │ │ ├── gpage_conecone.htm │ │ │ │ ├── gpage_copterbomber.htm │ │ │ │ ├── gpage_drunkman.htm │ │ │ │ ├── gpage_firingline.htm │ │ │ │ ├── gpage_fisher.htm │ │ │ │ ├── gpage_fruitmania.htm │ │ │ │ ├── gpage_hardday.htm │ │ │ │ ├── gpage_hunt.htm │ │ │ │ ├── gpage_icegifts.htm │ │ │ │ ├── gpage_ironstream.htm │ │ │ │ ├── gpage_kalah.htm │ │ │ │ ├── gpage_kickkick.htm │ │ │ │ ├── gpage_lifesaver.htm │ │ │ │ ├── gpage_livebridge.htm │ │ │ │ ├── gpage_mobilechase.htm │ │ │ │ ├── gpage_mobilesheriff.htm │ │ │ │ ├── gpage_mtvpaparazzo.htm │ │ │ │ ├── gpage_mtvpillow.htm │ │ │ │ ├── gpage_mtvpuzzle.htm │ │ │ │ ├── gpage_mtvstage.htm │ │ │ │ ├── gpage_nimble.htm │ │ │ │ ├── gpage_opthunderclap.htm │ │ │ │ ├── gpage_oysterbank.htm │ │ │ │ ├── gpage_papaninsquest.htm │ │ │ │ ├── gpage_ravenscheese.htm │ │ │ │ ├── gpage_searoad.htm │ │ │ │ ├── gpage_searovers.htm │ │ │ │ ├── gpage_slider_alpop.htm │ │ │ │ ├── gpage_smashingkick.htm │ │ │ │ ├── gpage_smscat.htm │ │ │ │ ├── gpage_spiders.htm │ │ │ │ ├── gpage_starharbor.htm │ │ │ │ ├── gpage_strangehunt.htm │ │ │ │ ├── gpage_tastydish.htm │ │ │ │ ├── gpage_vineyard.htm │ │ │ │ ├── gpage_waterway.htm │ │ │ │ ├── gpage_wildballs.htm │ │ │ │ ├── gpage_wildroad.htm │ │ │ │ ├── menu1_about.htm │ │ │ │ ├── menu1_contacts.htm │ │ │ │ ├── menu1_job.htm │ │ │ │ ├── menu1_news.htm │ │ │ │ ├── menu1_partnership.htm │ │ │ │ ├── menu2_all.htm │ │ │ │ ├── menu2_arcade.htm │ │ │ │ ├── menu2_clientserver.htm │ │ │ │ ├── menu2_erotic.htm │ │ │ │ ├── menu2_fighting.htm │ │ │ │ ├── menu2_gambling.htm │ │ │ │ ├── menu2_logic.htm │ │ │ │ ├── menu2_multiplayer.htm │ │ │ │ ├── menu2_quest.htm │ │ │ │ ├── menu2_racing.htm │ │ │ │ ├── menu2_shooter.htm │ │ │ │ ├── menu2_sport.htm │ │ │ │ ├── menu3_appsall.htm │ │ │ │ ├── send_error.html │ │ │ │ └── send_ok.html │ │ │ ├── games │ │ │ │ ├── airaggression_scr1.gif │ │ │ │ ├── airaggression_scr2.gif │ │ │ │ ├── airaggression_scr3.gif │ │ │ │ ├── airaggression_splash.jpg │ │ │ │ ├── airboil_scr1.gif │ │ │ │ ├── airboil_scr2.gif │ │ │ │ ├── airboil_scr3.gif │ │ │ │ ├── airboil_splash.jpg │ │ │ │ ├── aneks_ny2006_scr1.gif │ │ │ │ ├── aneks_ny2006_scr2.gif │ │ │ │ ├── aneks_ny2006_scr3.gif │ │ │ │ ├── aneks_ny2006_splash.jpg │ │ │ │ ├── blazinggears_scr1.gif │ │ │ │ ├── blazinggears_scr2.gif │ │ │ │ ├── blazinggears_scr3.gif │ │ │ │ ├── blazinggears_splash.jpg │ │ │ │ ├── caspianmonster_scr1.gif │ │ │ │ ├── caspianmonster_scr2.gif │ │ │ │ ├── caspianmonster_scr3.gif │ │ │ │ ├── caspianmonster_splash.jpg │ │ │ │ ├── castleassault_scr1.gif │ │ │ │ ├── castleassault_scr2.gif │ │ │ │ ├── castleassault_scr3.gif │ │ │ │ ├── castleassault_splash.jpg │ │ │ │ ├── cockroach_scr1.gif │ │ │ │ ├── cockroach_scr2.gif │ │ │ │ ├── cockroach_scr3.gif │ │ │ │ ├── cockroach_splash.jpg │ │ │ │ ├── coconutsfall_scr1.gif │ │ │ │ ├── coconutsfall_scr2.gif │ │ │ │ ├── coconutsfall_scr3.gif │ │ │ │ ├── coconutsfall_splash.jpg │ │ │ │ ├── conecone_scr1.gif │ │ │ │ ├── conecone_scr2.gif │ │ │ │ ├── conecone_scr3.gif │ │ │ │ ├── conecone_splash.jpg │ │ │ │ ├── copterbomber_scr1.gif │ │ │ │ ├── copterbomber_scr2.gif │ │ │ │ ├── copterbomber_scr3.gif │ │ │ │ ├── copterbomber_splash.jpg │ │ │ │ ├── drunkman_scr1.gif │ │ │ │ ├── drunkman_scr2.gif │ │ │ │ ├── drunkman_scr3.gif │ │ │ │ ├── drunkman_splash.jpg │ │ │ │ ├── firingline_scr1.gif │ │ │ │ ├── firingline_scr2.gif │ │ │ │ ├── firingline_scr3.gif │ │ │ │ ├── firingline_splash.jpg │ │ │ │ ├── fisher_scr1.gif │ │ │ │ ├── fisher_scr2.gif │ │ │ │ ├── fisher_scr3.gif │ │ │ │ ├── fisher_splash.jpg │ │ │ │ ├── fruitmania_scr1.gif │ │ │ │ ├── fruitmania_scr2.gif │ │ │ │ ├── fruitmania_scr3.gif │ │ │ │ ├── fruitmania_splash.jpg │ │ │ │ ├── games2003_2006.html │ │ │ │ ├── hardday_scr1.gif │ │ │ │ ├── hardday_scr2.gif │ │ │ │ ├── hardday_scr3.gif │ │ │ │ ├── hardday_splash.jpg │ │ │ │ ├── hunt_scr1.gif │ │ │ │ ├── hunt_scr2.gif │ │ │ │ ├── hunt_scr3.gif │ │ │ │ ├── hunt_splash.jpg │ │ │ │ ├── icegifts_scr1.gif │ │ │ │ ├── icegifts_scr2.gif │ │ │ │ ├── icegifts_scr3.gif │ │ │ │ ├── icegifts_splash.jpg │ │ │ │ ├── ironstream_scr1.gif │ │ │ │ ├── ironstream_scr2.gif │ │ │ │ ├── ironstream_scr3.gif │ │ │ │ ├── ironstream_splash.jpg │ │ │ │ ├── kalah_scr1.gif │ │ │ │ ├── kalah_scr2.gif │ │ │ │ ├── kalah_scr3.gif │ │ │ │ ├── kalah_splash.jpg │ │ │ │ ├── kickkick_scr1.gif │ │ │ │ ├── kickkick_scr2.gif │ │ │ │ ├── kickkick_scr3.gif │ │ │ │ ├── kickkick_splash.jpg │ │ │ │ ├── lifesaver_scr1.gif │ │ │ │ ├── lifesaver_scr2.gif │ │ │ │ ├── lifesaver_scr3.gif │ │ │ │ ├── lifesaver_splash.jpg │ │ │ │ ├── livebridge_scr1.gif │ │ │ │ ├── livebridge_scr2.gif │ │ │ │ ├── livebridge_scr3.gif │ │ │ │ ├── livebridge_splash.jpg │ │ │ │ ├── mobilechase_scr1.gif │ │ │ │ ├── mobilechase_scr2.gif │ │ │ │ ├── mobilechase_scr3.gif │ │ │ │ ├── mobilechase_splash.jpg │ │ │ │ ├── mobilesheriff_scr1.gif │ │ │ │ ├── mobilesheriff_scr2.gif │ │ │ │ ├── mobilesheriff_scr3.gif │ │ │ │ ├── mobilesheriff_splash.jpg │ │ │ │ ├── mtvpaparazzo_scr1.gif │ │ │ │ ├── mtvpaparazzo_scr2.gif │ │ │ │ ├── mtvpaparazzo_scr3.gif │ │ │ │ ├── mtvpaparazzo_splash.jpg │ │ │ │ ├── mtvpillow_scr1.gif │ │ │ │ ├── mtvpillow_scr2.gif │ │ │ │ ├── mtvpillow_scr3.gif │ │ │ │ ├── mtvpillow_splash.jpg │ │ │ │ ├── mtvpuzzle_scr1.gif │ │ │ │ ├── mtvpuzzle_scr2.gif │ │ │ │ ├── mtvpuzzle_scr3.gif │ │ │ │ ├── mtvpuzzle_splash.jpg │ │ │ │ ├── mtvstage_scr1.gif │ │ │ │ ├── mtvstage_scr2.gif │ │ │ │ ├── mtvstage_scr3.gif │ │ │ │ ├── mtvstage_splash.jpg │ │ │ │ ├── nimble_scr1.gif │ │ │ │ ├── nimble_scr2.gif │ │ │ │ ├── nimble_scr3.gif │ │ │ │ ├── nimble_splash.jpg │ │ │ │ ├── opthunderclap_scr1.gif │ │ │ │ ├── opthunderclap_scr2.gif │ │ │ │ ├── opthunderclap_scr3.gif │ │ │ │ ├── opthunderclap_splash.jpg │ │ │ │ ├── oysterbank_scr1.gif │ │ │ │ ├── oysterbank_scr2.gif │ │ │ │ ├── oysterbank_scr3.gif │ │ │ │ ├── oysterbank_splash.jpg │ │ │ │ ├── papaninsquest_scr1.gif │ │ │ │ ├── papaninsquest_scr2.gif │ │ │ │ ├── papaninsquest_scr3.gif │ │ │ │ ├── papaninsquest_splash.jpg │ │ │ │ ├── ravenscheese_scr1.gif │ │ │ │ ├── ravenscheese_scr2.gif │ │ │ │ ├── ravenscheese_scr3.gif │ │ │ │ ├── ravenscheese_splash.jpg │ │ │ │ ├── searoad_scr1.gif │ │ │ │ ├── searoad_scr2.gif │ │ │ │ ├── searoad_scr3.gif │ │ │ │ ├── searoad_splash.jpg │ │ │ │ ├── searovers_scr1.gif │ │ │ │ ├── searovers_scr2.gif │ │ │ │ ├── searovers_scr3.gif │ │ │ │ ├── searovers_splash.jpg │ │ │ │ ├── slider_alpop_scr1.gif │ │ │ │ ├── slider_alpop_scr2.gif │ │ │ │ ├── slider_alpop_scr3.gif │ │ │ │ ├── slider_alpop_splash.jpg │ │ │ │ ├── smashingkick_scr1.gif │ │ │ │ ├── smashingkick_scr2.gif │ │ │ │ ├── smashingkick_scr3.gif │ │ │ │ ├── smashingkick_splash.jpg │ │ │ │ ├── smscat_scr1.gif │ │ │ │ ├── smscat_scr2.gif │ │ │ │ ├── smscat_scr3.gif │ │ │ │ ├── smscat_splash.jpg │ │ │ │ ├── spiders_scr1.gif │ │ │ │ ├── spiders_scr2.gif │ │ │ │ ├── spiders_scr3.gif │ │ │ │ ├── spiders_splash.jpg │ │ │ │ ├── starharbor_scr1.gif │ │ │ │ ├── starharbor_scr2.gif │ │ │ │ ├── starharbor_scr3.gif │ │ │ │ ├── starharbor_splash.jpg │ │ │ │ ├── strangehunt_scr1.gif │ │ │ │ ├── strangehunt_scr2.gif │ │ │ │ ├── strangehunt_scr3.gif │ │ │ │ ├── strangehunt_splash.jpg │ │ │ │ ├── tastydish_scr1.gif │ │ │ │ ├── tastydish_scr2.gif │ │ │ │ ├── tastydish_scr3.gif │ │ │ │ ├── tastydish_splash.jpg │ │ │ │ ├── vineyard_scr1.gif │ │ │ │ ├── vineyard_scr2.gif │ │ │ │ ├── vineyard_scr3.gif │ │ │ │ ├── vineyard_splash.jpg │ │ │ │ ├── waterway_scr1.gif │ │ │ │ ├── waterway_scr2.gif │ │ │ │ ├── waterway_scr3.gif │ │ │ │ ├── waterway_splash.jpg │ │ │ │ ├── wildballs_scr1.gif │ │ │ │ ├── wildballs_scr2.gif │ │ │ │ ├── wildballs_scr3.gif │ │ │ │ ├── wildballs_splash.jpg │ │ │ │ ├── wildroad_scr1.gif │ │ │ │ ├── wildroad_scr2.gif │ │ │ │ ├── wildroad_scr3.gif │ │ │ │ └── wildroad_splash.jpg │ │ │ ├── i_icon.gif │ │ │ ├── index.htm │ │ │ ├── ledoff.gif │ │ │ ├── ledon.gif │ │ │ ├── loadpages │ │ │ │ ├── muzon_AirBoil.htm │ │ │ │ └── muzon_StarHarbor.htm │ │ │ ├── logos │ │ │ │ ├── bee_logo.gif │ │ │ │ ├── infon.gif │ │ │ │ ├── mega_logo.gif │ │ │ │ ├── mts_logo.gif │ │ │ │ ├── muzon.gif │ │ │ │ ├── nikita.gif │ │ │ │ ├── playmobile.gif │ │ │ │ └── simone.gif │ │ │ ├── rus │ │ │ │ ├── gpage_airaggression.htm │ │ │ │ ├── gpage_airboil.htm │ │ │ │ ├── gpage_aneks_ny2006.htm │ │ │ │ ├── gpage_blazinggears.htm │ │ │ │ ├── gpage_caspianmonster.htm │ │ │ │ ├── gpage_castleassault.htm │ │ │ │ ├── gpage_cockroach.htm │ │ │ │ ├── gpage_coconutsfall.htm │ │ │ │ ├── gpage_conecone.htm │ │ │ │ ├── gpage_copterbomber.htm │ │ │ │ ├── gpage_drunkman.htm │ │ │ │ ├── gpage_firingline.htm │ │ │ │ ├── gpage_fisher.htm │ │ │ │ ├── gpage_fruitmania.htm │ │ │ │ ├── gpage_hardday.htm │ │ │ │ ├── gpage_hunt.htm │ │ │ │ ├── gpage_icegifts.htm │ │ │ │ ├── gpage_ironstream.htm │ │ │ │ ├── gpage_kalah.htm │ │ │ │ ├── gpage_kickkick.htm │ │ │ │ ├── gpage_lifesaver.htm │ │ │ │ ├── gpage_livebridge.htm │ │ │ │ ├── gpage_mobilechase.htm │ │ │ │ ├── gpage_mobilesheriff.htm │ │ │ │ ├── gpage_mtvpaparazzo.htm │ │ │ │ ├── gpage_mtvpillow.htm │ │ │ │ ├── gpage_mtvpuzzle.htm │ │ │ │ ├── gpage_mtvstage.htm │ │ │ │ ├── gpage_nimble.htm │ │ │ │ ├── gpage_opthunderclap.htm │ │ │ │ ├── gpage_oysterbank.htm │ │ │ │ ├── gpage_papaninsquest.htm │ │ │ │ ├── gpage_ravenscheese.htm │ │ │ │ ├── gpage_searoad.htm │ │ │ │ ├── gpage_searovers.htm │ │ │ │ ├── gpage_slider_alpop.htm │ │ │ │ ├── gpage_smashingkick.htm │ │ │ │ ├── gpage_smscat.htm │ │ │ │ ├── gpage_spiders.htm │ │ │ │ ├── gpage_starharbor.htm │ │ │ │ ├── gpage_strangehunt.htm │ │ │ │ ├── gpage_tastydish.htm │ │ │ │ ├── gpage_vineyard.htm │ │ │ │ ├── gpage_waterway.htm │ │ │ │ ├── gpage_wildballs.htm │ │ │ │ ├── gpage_wildroad.htm │ │ │ │ ├── menu1_about.htm │ │ │ │ ├── menu1_contacts.htm │ │ │ │ ├── menu1_job.htm │ │ │ │ ├── menu1_news.htm │ │ │ │ ├── menu1_partnership.htm │ │ │ │ ├── menu2_all.htm │ │ │ │ ├── menu2_arcade.htm │ │ │ │ ├── menu2_clientserver.htm │ │ │ │ ├── menu2_erotic.htm │ │ │ │ ├── menu2_fighting.htm │ │ │ │ ├── menu2_gambling.htm │ │ │ │ ├── menu2_logic.htm │ │ │ │ ├── menu2_multiplayer.htm │ │ │ │ ├── menu2_quest.htm │ │ │ │ ├── menu2_racing.htm │ │ │ │ ├── menu2_shooter.htm │ │ │ │ ├── menu2_sport.htm │ │ │ │ ├── menu3_appsall.htm │ │ │ │ ├── send_error.html │ │ │ │ └── send_ok.html │ │ │ ├── undercon.gif │ │ │ ├── wap │ │ │ │ ├── index.wml │ │ │ │ └── logo.wbmp │ │ │ └── x_icon.gif │ │ └── src │ │ │ ├── about.htm │ │ │ ├── cc.gif │ │ │ ├── cc_lft.jpg │ │ │ ├── cc_rght.jpg │ │ │ ├── channels.xml │ │ │ ├── cmn │ │ │ ├── sendfeedback.phtml │ │ │ ├── styles.css │ │ │ └── styles2.css │ │ │ ├── contacts.htm │ │ │ ├── devices.xml │ │ │ ├── eng │ │ │ ├── send_error.html │ │ │ └── send_ok.html │ │ │ ├── gamelist.htm │ │ │ ├── gameref.htm │ │ │ ├── games.htm │ │ │ ├── games.xml │ │ │ ├── games │ │ │ ├── airaggression_scr1.gif │ │ │ ├── airaggression_scr2.gif │ │ │ ├── airaggression_scr3.gif │ │ │ ├── airaggression_splash.jpg │ │ │ ├── airboil_scr1.gif │ │ │ ├── airboil_scr2.gif │ │ │ ├── airboil_scr3.gif │ │ │ ├── airboil_splash.jpg │ │ │ ├── aneks_ny2006_scr1.gif │ │ │ ├── aneks_ny2006_scr2.gif │ │ │ ├── aneks_ny2006_scr3.gif │ │ │ ├── aneks_ny2006_splash.jpg │ │ │ ├── blazinggears_scr1.gif │ │ │ ├── blazinggears_scr2.gif │ │ │ ├── blazinggears_scr3.gif │ │ │ ├── blazinggears_splash.jpg │ │ │ ├── caspianmonster_scr1.gif │ │ │ ├── caspianmonster_scr2.gif │ │ │ ├── caspianmonster_scr3.gif │ │ │ ├── caspianmonster_splash.jpg │ │ │ ├── castleassault_scr1.gif │ │ │ ├── castleassault_scr2.gif │ │ │ ├── castleassault_scr3.gif │ │ │ ├── castleassault_splash.jpg │ │ │ ├── cockroach_scr1.gif │ │ │ ├── cockroach_scr2.gif │ │ │ ├── cockroach_scr3.gif │ │ │ ├── cockroach_splash.jpg │ │ │ ├── coconutsfall_scr1.gif │ │ │ ├── coconutsfall_scr2.gif │ │ │ ├── coconutsfall_scr3.gif │ │ │ ├── coconutsfall_splash.jpg │ │ │ ├── conecone_scr1.gif │ │ │ ├── conecone_scr2.gif │ │ │ ├── conecone_scr3.gif │ │ │ ├── conecone_splash.jpg │ │ │ ├── copterbomber_scr1.gif │ │ │ ├── copterbomber_scr2.gif │ │ │ ├── copterbomber_scr3.gif │ │ │ ├── copterbomber_splash.jpg │ │ │ ├── drunkman_scr1.gif │ │ │ ├── drunkman_scr2.gif │ │ │ ├── drunkman_scr3.gif │ │ │ ├── drunkman_splash.jpg │ │ │ ├── firingline_scr1.gif │ │ │ ├── firingline_scr2.gif │ │ │ ├── firingline_scr3.gif │ │ │ ├── firingline_splash.jpg │ │ │ ├── fisher_scr1.gif │ │ │ ├── fisher_scr2.gif │ │ │ ├── fisher_scr3.gif │ │ │ ├── fisher_splash.jpg │ │ │ ├── fruitmania_scr1.gif │ │ │ ├── fruitmania_scr2.gif │ │ │ ├── fruitmania_scr3.gif │ │ │ ├── fruitmania_splash.jpg │ │ │ ├── games2003_2006.html │ │ │ ├── hardday_scr1.gif │ │ │ ├── hardday_scr2.gif │ │ │ ├── hardday_scr3.gif │ │ │ ├── hardday_splash.jpg │ │ │ ├── hunt_scr1.gif │ │ │ ├── hunt_scr2.gif │ │ │ ├── hunt_scr3.gif │ │ │ ├── hunt_splash.jpg │ │ │ ├── icegifts_scr1.gif │ │ │ ├── icegifts_scr2.gif │ │ │ ├── icegifts_scr3.gif │ │ │ ├── icegifts_splash.jpg │ │ │ ├── ironstream_scr1.gif │ │ │ ├── ironstream_scr2.gif │ │ │ ├── ironstream_scr3.gif │ │ │ ├── ironstream_splash.jpg │ │ │ ├── kalah_scr1.gif │ │ │ ├── kalah_scr2.gif │ │ │ ├── kalah_scr3.gif │ │ │ ├── kalah_splash.jpg │ │ │ ├── kickkick_scr1.gif │ │ │ ├── kickkick_scr2.gif │ │ │ ├── kickkick_scr3.gif │ │ │ ├── kickkick_splash.jpg │ │ │ ├── lifesaver_scr1.gif │ │ │ ├── lifesaver_scr2.gif │ │ │ ├── lifesaver_scr3.gif │ │ │ ├── lifesaver_splash.jpg │ │ │ ├── livebridge_scr1.gif │ │ │ ├── livebridge_scr2.gif │ │ │ ├── livebridge_scr3.gif │ │ │ ├── livebridge_splash.jpg │ │ │ ├── mobilechase_scr1.gif │ │ │ ├── mobilechase_scr2.gif │ │ │ ├── mobilechase_scr3.gif │ │ │ ├── mobilechase_splash.jpg │ │ │ ├── mobilesheriff_scr1.gif │ │ │ ├── mobilesheriff_scr2.gif │ │ │ ├── mobilesheriff_scr3.gif │ │ │ ├── mobilesheriff_splash.jpg │ │ │ ├── mtvpaparazzo_scr1.gif │ │ │ ├── mtvpaparazzo_scr2.gif │ │ │ ├── mtvpaparazzo_scr3.gif │ │ │ ├── mtvpaparazzo_splash.jpg │ │ │ ├── mtvpillow_scr1.gif │ │ │ ├── mtvpillow_scr2.gif │ │ │ ├── mtvpillow_scr3.gif │ │ │ ├── mtvpillow_splash.jpg │ │ │ ├── mtvpuzzle_scr1.gif │ │ │ ├── mtvpuzzle_scr2.gif │ │ │ ├── mtvpuzzle_scr3.gif │ │ │ ├── mtvpuzzle_splash.jpg │ │ │ ├── mtvstage_scr1.gif │ │ │ ├── mtvstage_scr2.gif │ │ │ ├── mtvstage_scr3.gif │ │ │ ├── mtvstage_splash.jpg │ │ │ ├── nimble_scr1.gif │ │ │ ├── nimble_scr2.gif │ │ │ ├── nimble_scr3.gif │ │ │ ├── nimble_splash.jpg │ │ │ ├── opthunderclap_scr1.gif │ │ │ ├── opthunderclap_scr2.gif │ │ │ ├── opthunderclap_scr3.gif │ │ │ ├── opthunderclap_splash.jpg │ │ │ ├── oysterbank_scr1.gif │ │ │ ├── oysterbank_scr2.gif │ │ │ ├── oysterbank_scr3.gif │ │ │ ├── oysterbank_splash.jpg │ │ │ ├── papaninsquest_scr1.gif │ │ │ ├── papaninsquest_scr2.gif │ │ │ ├── papaninsquest_scr3.gif │ │ │ ├── papaninsquest_splash.jpg │ │ │ ├── ravenscheese_scr1.gif │ │ │ ├── ravenscheese_scr2.gif │ │ │ ├── ravenscheese_scr3.gif │ │ │ ├── ravenscheese_splash.jpg │ │ │ ├── searoad_scr1.gif │ │ │ ├── searoad_scr2.gif │ │ │ ├── searoad_scr3.gif │ │ │ ├── searoad_splash.jpg │ │ │ ├── searovers_scr1.gif │ │ │ ├── searovers_scr2.gif │ │ │ ├── searovers_scr3.gif │ │ │ ├── searovers_splash.jpg │ │ │ ├── slider_alpop_scr1.gif │ │ │ ├── slider_alpop_scr2.gif │ │ │ ├── slider_alpop_scr3.gif │ │ │ ├── slider_alpop_splash.jpg │ │ │ ├── smashingkick_scr1.gif │ │ │ ├── smashingkick_scr2.gif │ │ │ ├── smashingkick_scr3.gif │ │ │ ├── smashingkick_splash.jpg │ │ │ ├── smscat_scr1.gif │ │ │ ├── smscat_scr2.gif │ │ │ ├── smscat_scr3.gif │ │ │ ├── smscat_splash.jpg │ │ │ ├── spiders_scr1.gif │ │ │ ├── spiders_scr2.gif │ │ │ ├── spiders_scr3.gif │ │ │ ├── spiders_splash.jpg │ │ │ ├── starharbor_scr1.gif │ │ │ ├── starharbor_scr2.gif │ │ │ ├── starharbor_scr3.gif │ │ │ ├── starharbor_splash.jpg │ │ │ ├── strangehunt_scr1.gif │ │ │ ├── strangehunt_scr2.gif │ │ │ ├── strangehunt_scr3.gif │ │ │ ├── strangehunt_splash.jpg │ │ │ ├── tastydish_scr1.gif │ │ │ ├── tastydish_scr2.gif │ │ │ ├── tastydish_scr3.gif │ │ │ ├── tastydish_splash.jpg │ │ │ ├── vineyard_scr1.gif │ │ │ ├── vineyard_scr2.gif │ │ │ ├── vineyard_scr3.gif │ │ │ ├── vineyard_splash.jpg │ │ │ ├── waterway_scr1.gif │ │ │ ├── waterway_scr2.gif │ │ │ ├── waterway_scr3.gif │ │ │ ├── waterway_splash.jpg │ │ │ ├── wildballs_scr1.gif │ │ │ ├── wildballs_scr2.gif │ │ │ ├── wildballs_scr3.gif │ │ │ ├── wildballs_splash.jpg │ │ │ ├── wildroad_scr1.gif │ │ │ ├── wildroad_scr2.gif │ │ │ ├── wildroad_scr3.gif │ │ │ └── wildroad_splash.jpg │ │ │ ├── hotnews.htm │ │ │ ├── hotnews.xml │ │ │ ├── i_icon.gif │ │ │ ├── index.htm │ │ │ ├── job.htm │ │ │ ├── ledoff.gif │ │ │ ├── ledon.gif │ │ │ ├── loadpages │ │ │ ├── muzon_AirBoil.htm │ │ │ └── muzon_StarHarbor.htm │ │ │ ├── logos │ │ │ ├── bee_logo.gif │ │ │ ├── infon.gif │ │ │ ├── mega_logo.gif │ │ │ ├── mts_logo.gif │ │ │ ├── muzon.gif │ │ │ ├── nikita.gif │ │ │ ├── playmobile.gif │ │ │ └── simone.gif │ │ │ ├── main.htm │ │ │ ├── news.htm │ │ │ ├── news.xml │ │ │ ├── partnership.htm │ │ │ ├── rus │ │ │ ├── send_error.html │ │ │ └── send_ok.html │ │ │ ├── site.xml │ │ │ ├── undercon.gif │ │ │ ├── wap │ │ │ ├── index.wml │ │ │ └── logo.wbmp │ │ │ └── x_icon.gif │ ├── Str2JavaTest │ │ ├── etl │ │ │ └── text.txt │ │ └── src │ │ │ ├── body.txt │ │ │ ├── str.txt │ │ │ └── text.txt │ ├── StringDirectiveTest │ │ ├── etl │ │ │ └── text.txt │ │ └── src │ │ │ └── text.txt │ ├── TextBufferVariablesTest │ │ ├── etl │ │ │ └── text.txt │ │ └── src │ │ │ └── text.txt │ ├── UnknownVarAsFalseTest │ │ ├── etl │ │ │ └── body.txt │ │ └── src │ │ │ └── body.txt │ ├── UsePrefixAsMultilineTest │ │ ├── etl │ │ │ └── text.txt │ │ └── src │ │ │ └── text.txt │ └── UserFunctionTest │ │ ├── etl │ │ └── text.txt │ │ └── src │ │ └── text.txt │ └── utils │ └── somefile.txt └── pom.xml /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=false 2 | * -crlf -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/run-maven-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/.github/workflows/run-maven-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/.gitignore -------------------------------------------------------------------------------- /.projectKnowledge/JCPreprocessor.mmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/.projectKnowledge/JCPreprocessor.mmd -------------------------------------------------------------------------------- /.projectKnowledge/documap.mmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/.projectKnowledge/documap.mmd -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/README.md -------------------------------------------------------------------------------- /assets/arthur_sanctuary_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/assets/arthur_sanctuary_banner.png -------------------------------------------------------------------------------- /assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/assets/banner.png -------------------------------------------------------------------------------- /assets/documap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/assets/documap.png -------------------------------------------------------------------------------- /assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/assets/logo.svg -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/changelog.txt -------------------------------------------------------------------------------- /jcp-tests/extlibs/gradle-tooling-api-5.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/extlibs/gradle-tooling-api-5.1.jar -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-android/app/build.gradle -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-android/app/proguard-rules.pro -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-android/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/app/src/main/res/layout/content_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-android/app/src/main/res/layout/content_main.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-android/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-android/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-android/build.gradle -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-android/gradle.properties -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-android/local.properties -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-android/pom.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /jcp-tests/jcp-test-ant/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-ant/pom.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-ant/src/test/resources/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-ant/src/test/resources/build.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-ant/src/test/resources/config.cfg: -------------------------------------------------------------------------------- 1 | #some comment 2 | cfg.test="hellocfg" 3 | -------------------------------------------------------------------------------- /jcp-tests/jcp-test-ant/src/test/resources/src/com/igormaznitsa/dummyproject/main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-ant/src/test/resources/src/com/igormaznitsa/dummyproject/main.java -------------------------------------------------------------------------------- /jcp-tests/jcp-test-gradle-6/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-gradle-6/build.gradle -------------------------------------------------------------------------------- /jcp-tests/jcp-test-gradle-6/configFile.txt: -------------------------------------------------------------------------------- 1 | # config file for build 2 | someGlobalVar="HUZZAA!" -------------------------------------------------------------------------------- /jcp-tests/jcp-test-gradle-6/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-gradle-6/pom.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-gradle-6/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'jcp-test-gradle' -------------------------------------------------------------------------------- /jcp-tests/jcp-test-gradle-6/src/main/java/com/igormaznitsa/jcp/it/gradle/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-gradle-6/src/main/java/com/igormaznitsa/jcp/it/gradle/Main.java -------------------------------------------------------------------------------- /jcp-tests/jcp-test-gradle-6/src/main/java/com/igormaznitsa/jcp/it/gradle/Some.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-gradle-6/src/main/java/com/igormaznitsa/jcp/it/gradle/Some.java -------------------------------------------------------------------------------- /jcp-tests/jcp-test-gradle-7/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-gradle-7/build.gradle -------------------------------------------------------------------------------- /jcp-tests/jcp-test-gradle-7/configFile.txt: -------------------------------------------------------------------------------- 1 | # config file for build 2 | someGlobalVar="HUZZAA!" -------------------------------------------------------------------------------- /jcp-tests/jcp-test-gradle-7/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-gradle-7/pom.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-gradle-7/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'jcp-test-gradle' -------------------------------------------------------------------------------- /jcp-tests/jcp-test-gradle-7/src/main/java/com/igormaznitsa/jcp/it/gradle/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-gradle-7/src/main/java/com/igormaznitsa/jcp/it/gradle/Main.java -------------------------------------------------------------------------------- /jcp-tests/jcp-test-gradle-7/src/main/java/com/igormaznitsa/jcp/it/gradle/Some.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-gradle-7/src/main/java/com/igormaznitsa/jcp/it/gradle/Some.java -------------------------------------------------------------------------------- /jcp-tests/jcp-test-gradle-8/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-gradle-8/build.gradle -------------------------------------------------------------------------------- /jcp-tests/jcp-test-gradle-8/configFile.txt: -------------------------------------------------------------------------------- 1 | # config file for build 2 | someGlobalVar="HUZZAA!" -------------------------------------------------------------------------------- /jcp-tests/jcp-test-gradle-8/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-gradle-8/pom.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-gradle-8/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'jcp-test-gradle' -------------------------------------------------------------------------------- /jcp-tests/jcp-test-gradle-8/src/main/java/com/igormaznitsa/jcp/it/gradle/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-gradle-8/src/main/java/com/igormaznitsa/jcp/it/gradle/Main.java -------------------------------------------------------------------------------- /jcp-tests/jcp-test-gradle-8/src/main/java/com/igormaznitsa/jcp/it/gradle/Some.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-gradle-8/src/main/java/com/igormaznitsa/jcp/it/gradle/Some.java -------------------------------------------------------------------------------- /jcp-tests/jcp-test-gradle-9/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-gradle-9/build.gradle -------------------------------------------------------------------------------- /jcp-tests/jcp-test-gradle-9/configFile.txt: -------------------------------------------------------------------------------- 1 | # config file for build 2 | someGlobalVar="HUZZAA!" -------------------------------------------------------------------------------- /jcp-tests/jcp-test-gradle-9/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-gradle-9/pom.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-gradle-9/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'jcp-test-gradle' -------------------------------------------------------------------------------- /jcp-tests/jcp-test-gradle-9/src/main/java/com/igormaznitsa/jcp/it/gradle/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-gradle-9/src/main/java/com/igormaznitsa/jcp/it/gradle/Main.java -------------------------------------------------------------------------------- /jcp-tests/jcp-test-gradle-9/src/main/java/com/igormaznitsa/jcp/it/gradle/Some.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-gradle-9/src/main/java/com/igormaznitsa/jcp/it/gradle/Some.java -------------------------------------------------------------------------------- /jcp-tests/jcp-test-javassist/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-javassist/pom.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-javassist/src/main/java/com/igormaznitsa/jcp/it/test/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-javassist/src/main/java/com/igormaznitsa/jcp/it/test/Main.java -------------------------------------------------------------------------------- /jcp-tests/jcp-test-jep238/pom.jdk9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-jep238/pom.jdk9.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-jep238/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-jep238/pom.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-jep238/src/assembly/assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-jep238/src/assembly/assembly.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-jep238/src/main/java/com/igormaznitsa/tests/JDK9APIClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-jep238/src/main/java/com/igormaznitsa/tests/JDK9APIClass.java -------------------------------------------------------------------------------- /jcp-tests/jcp-test-jep238/src/main/java/com/igormaznitsa/tests/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-jep238/src/main/java/com/igormaznitsa/tests/Main.java -------------------------------------------------------------------------------- /jcp-tests/jcp-test-jep238/src/main/java/com/igormaznitsa/tests/OldJavaClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-jep238/src/main/java/com/igormaznitsa/tests/OldJavaClass.java -------------------------------------------------------------------------------- /jcp-tests/jcp-test-maven-action/jcp-test-maven-action-action/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-maven-action/jcp-test-maven-action-action/pom.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-maven-action/jcp-test-maven-action-plugin-call/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-maven-action/jcp-test-maven-action-plugin-call/pom.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-maven-action/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-maven-action/pom.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-maven/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-maven/pom.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-maven/src/main/java/com/igormaznitsa/jcp/it/maven/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-maven/src/main/java/com/igormaznitsa/jcp/it/maven/Main.java -------------------------------------------------------------------------------- /jcp-tests/jcp-test-maven/src/test/java/com/igormaznitsa/jcp/it/maven/TestMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-maven/src/test/java/com/igormaznitsa/jcp/it/maven/TestMain.java -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/pom.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/about.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/about.htm -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/cc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/cc.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/cc_lft.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/cc_lft.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/cc_rght.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/cc_rght.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/channels.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/channels.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/cmn/sendfeedback.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/cmn/sendfeedback.phtml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/cmn/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/cmn/styles.css -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/cmn/styles2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/cmn/styles2.css -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/contacts.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/contacts.htm -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/devices.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/devices.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/eng/send_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/eng/send_error.html -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/eng/send_ok.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/eng/send_ok.html -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/gamelist.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/gamelist.htm -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/gameref.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/gameref.htm -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games.htm -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/airaggression_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/airaggression_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/airaggression_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/airaggression_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/airaggression_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/airaggression_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/airaggression_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/airaggression_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/airboil_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/airboil_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/airboil_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/airboil_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/airboil_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/airboil_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/airboil_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/airboil_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/aneks_ny2006_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/aneks_ny2006_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/aneks_ny2006_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/aneks_ny2006_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/aneks_ny2006_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/aneks_ny2006_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/aneks_ny2006_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/aneks_ny2006_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/blazinggears_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/blazinggears_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/blazinggears_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/blazinggears_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/blazinggears_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/blazinggears_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/blazinggears_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/blazinggears_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/caspianmonster_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/caspianmonster_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/caspianmonster_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/caspianmonster_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/caspianmonster_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/caspianmonster_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/caspianmonster_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/caspianmonster_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/castleassault_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/castleassault_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/castleassault_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/castleassault_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/castleassault_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/castleassault_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/castleassault_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/castleassault_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/cockroach_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/cockroach_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/cockroach_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/cockroach_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/cockroach_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/cockroach_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/cockroach_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/cockroach_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/coconutsfall_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/coconutsfall_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/coconutsfall_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/coconutsfall_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/coconutsfall_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/coconutsfall_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/coconutsfall_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/coconutsfall_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/conecone_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/conecone_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/conecone_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/conecone_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/conecone_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/conecone_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/conecone_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/conecone_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/copterbomber_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/copterbomber_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/copterbomber_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/copterbomber_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/copterbomber_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/copterbomber_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/copterbomber_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/copterbomber_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/drunkman_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/drunkman_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/drunkman_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/drunkman_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/drunkman_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/drunkman_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/drunkman_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/drunkman_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/firingline_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/firingline_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/firingline_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/firingline_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/firingline_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/firingline_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/firingline_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/firingline_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/fisher_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/fisher_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/fisher_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/fisher_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/fisher_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/fisher_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/fisher_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/fisher_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/fruitmania_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/fruitmania_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/fruitmania_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/fruitmania_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/fruitmania_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/fruitmania_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/fruitmania_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/fruitmania_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/games2003_2006.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/games2003_2006.html -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/hardday_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/hardday_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/hardday_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/hardday_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/hardday_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/hardday_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/hardday_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/hardday_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/hunt_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/hunt_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/hunt_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/hunt_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/hunt_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/hunt_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/hunt_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/hunt_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/icegifts_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/icegifts_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/icegifts_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/icegifts_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/icegifts_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/icegifts_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/icegifts_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/icegifts_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/ironstream_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/ironstream_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/ironstream_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/ironstream_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/ironstream_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/ironstream_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/ironstream_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/ironstream_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/kalah_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/kalah_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/kalah_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/kalah_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/kalah_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/kalah_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/kalah_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/kalah_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/kickkick_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/kickkick_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/kickkick_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/kickkick_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/kickkick_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/kickkick_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/kickkick_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/kickkick_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/lifesaver_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/lifesaver_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/lifesaver_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/lifesaver_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/lifesaver_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/lifesaver_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/lifesaver_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/lifesaver_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/livebridge_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/livebridge_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/livebridge_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/livebridge_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/livebridge_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/livebridge_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/livebridge_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/livebridge_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/mobilechase_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/mobilechase_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/mobilechase_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/mobilechase_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/mobilechase_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/mobilechase_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/mobilechase_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/mobilechase_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/mobilesheriff_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/mobilesheriff_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/mobilesheriff_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/mobilesheriff_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/mobilesheriff_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/mobilesheriff_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/mobilesheriff_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/mobilesheriff_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/mtvpaparazzo_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/mtvpaparazzo_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/mtvpaparazzo_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/mtvpaparazzo_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/mtvpaparazzo_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/mtvpaparazzo_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/mtvpaparazzo_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/mtvpaparazzo_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/mtvpillow_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/mtvpillow_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/mtvpillow_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/mtvpillow_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/mtvpillow_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/mtvpillow_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/mtvpillow_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/mtvpillow_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/mtvpuzzle_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/mtvpuzzle_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/mtvpuzzle_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/mtvpuzzle_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/mtvpuzzle_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/mtvpuzzle_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/mtvpuzzle_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/mtvpuzzle_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/mtvstage_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/mtvstage_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/mtvstage_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/mtvstage_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/mtvstage_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/mtvstage_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/mtvstage_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/mtvstage_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/nimble_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/nimble_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/nimble_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/nimble_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/nimble_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/nimble_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/nimble_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/nimble_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/opthunderclap_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/opthunderclap_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/opthunderclap_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/opthunderclap_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/opthunderclap_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/opthunderclap_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/opthunderclap_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/opthunderclap_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/oysterbank_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/oysterbank_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/oysterbank_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/oysterbank_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/oysterbank_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/oysterbank_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/oysterbank_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/oysterbank_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/papaninsquest_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/papaninsquest_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/papaninsquest_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/papaninsquest_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/papaninsquest_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/papaninsquest_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/papaninsquest_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/papaninsquest_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/ravenscheese_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/ravenscheese_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/ravenscheese_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/ravenscheese_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/ravenscheese_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/ravenscheese_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/ravenscheese_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/ravenscheese_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/searoad_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/searoad_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/searoad_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/searoad_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/searoad_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/searoad_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/searoad_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/searoad_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/searovers_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/searovers_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/searovers_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/searovers_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/searovers_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/searovers_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/searovers_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/searovers_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/slider_alpop_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/slider_alpop_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/slider_alpop_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/slider_alpop_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/slider_alpop_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/slider_alpop_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/slider_alpop_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/slider_alpop_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/smashingkick_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/smashingkick_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/smashingkick_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/smashingkick_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/smashingkick_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/smashingkick_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/smashingkick_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/smashingkick_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/smscat_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/smscat_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/smscat_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/smscat_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/smscat_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/smscat_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/smscat_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/smscat_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/spiders_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/spiders_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/spiders_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/spiders_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/spiders_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/spiders_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/spiders_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/spiders_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/starharbor_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/starharbor_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/starharbor_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/starharbor_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/starharbor_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/starharbor_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/starharbor_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/starharbor_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/strangehunt_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/strangehunt_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/strangehunt_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/strangehunt_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/strangehunt_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/strangehunt_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/strangehunt_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/strangehunt_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/tastydish_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/tastydish_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/tastydish_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/tastydish_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/tastydish_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/tastydish_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/tastydish_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/tastydish_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/vineyard_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/vineyard_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/vineyard_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/vineyard_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/vineyard_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/vineyard_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/vineyard_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/vineyard_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/waterway_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/waterway_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/waterway_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/waterway_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/waterway_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/waterway_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/waterway_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/waterway_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/wildballs_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/wildballs_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/wildballs_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/wildballs_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/wildballs_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/wildballs_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/wildballs_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/wildballs_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/wildroad_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/wildroad_scr1.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/wildroad_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/wildroad_scr2.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/wildroad_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/wildroad_scr3.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/wildroad_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/games/wildroad_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/hotnews.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/hotnews.htm -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/hotnews.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/hotnews.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/i_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/i_icon.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/index.htm -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/job.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/job.htm -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/ledoff.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/ledoff.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/ledon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/ledon.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/loadpages/muzon_AirBoil.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/loadpages/muzon_AirBoil.htm -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/loadpages/muzon_StarHarbor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/loadpages/muzon_StarHarbor.htm -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/logos/bee_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/logos/bee_logo.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/logos/infon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/logos/infon.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/logos/mega_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/logos/mega_logo.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/logos/mts_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/logos/mts_logo.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/logos/muzon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/logos/muzon.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/logos/nikita.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/logos/nikita.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/logos/playmobile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/logos/playmobile.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/logos/simone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/logos/simone.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/main.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/main.htm -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/news.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/news.htm -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/news.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/news.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/partnership.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/partnership.htm -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/rus/send_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/rus/send_error.html -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/rus/send_ok.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/rus/send_ok.html -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/site.xml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/undercon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/undercon.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/wap/index.wml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/wap/index.wml -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/wap/logo.wbmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/jcp-test-static-site/src/main/resources/wap/logo.wbmp -------------------------------------------------------------------------------- /jcp-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp-tests/pom.xml -------------------------------------------------------------------------------- /jcp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/pom.xml -------------------------------------------------------------------------------- /jcp/src/assemble/bundle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/assemble/bundle.xml -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/InfoHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/InfoHelper.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/JcpPreprocessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/JcpPreprocessor.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/ant/PreprocessTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/ant/PreprocessTask.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/cmdline/AllowMergeBlockLineHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/cmdline/AllowMergeBlockLineHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/cmdline/CareForLastEolHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/cmdline/CareForLastEolHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/cmdline/ClearTargetHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/cmdline/ClearTargetHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/cmdline/CommandLineHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/cmdline/CommandLineHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/cmdline/DestinationDirectoryHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/cmdline/DestinationDirectoryHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/cmdline/ExcludeFoldersHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/cmdline/ExcludeFoldersHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/cmdline/ExcludedFileExtensionsHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/cmdline/ExcludedFileExtensionsHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/cmdline/FileExtensionsHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/cmdline/FileExtensionsHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/cmdline/GlobalVariableHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/cmdline/GlobalVariableHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/cmdline/HelpHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/cmdline/HelpHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/cmdline/InCharsetHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/cmdline/InCharsetHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/cmdline/KeepAttributesHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/cmdline/KeepAttributesHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/cmdline/KeepCommentsHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/cmdline/KeepCommentsHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/cmdline/KeepLineHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/cmdline/KeepLineHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/cmdline/OutCharsetHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/cmdline/OutCharsetHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/cmdline/PreserveIndentDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/cmdline/PreserveIndentDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/cmdline/RemoveCommentsHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/cmdline/RemoveCommentsHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/cmdline/SourceDirectoryHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/cmdline/SourceDirectoryHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/cmdline/UnknownAsFalseHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/cmdline/UnknownAsFalseHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/cmdline/VerboseHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/cmdline/VerboseHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/containers/FileInfoContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/containers/FileInfoContainer.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/containers/PreprocessingFlag.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/containers/PreprocessingFlag.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/containers/TextFileDataContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/containers/TextFileDataContainer.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/context/CommentRemoverType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/context/CommentRemoverType.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/context/CommentTextProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/context/CommentTextProcessor.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/context/EnvironmentVariableProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/context/EnvironmentVariableProcessor.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/context/ExecutionAllowable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/context/ExecutionAllowable.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/context/JCPSpecialVariableProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/context/JCPSpecialVariableProcessor.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/context/PreprocessingState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/context/PreprocessingState.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/context/PreprocessorContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/context/PreprocessorContext.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/context/PreprocessorContextAware.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/context/PreprocessorContextAware.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/context/SpecialVariableProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/context/SpecialVariableProcessor.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/AbortDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/AbortDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/AbstractDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/AbstractDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/ActionDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/ActionDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/BreakDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/BreakDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/ContinueDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/ContinueDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/DefineDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/DefineDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/DefinelDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/DefinelDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/DirectiveArgumentType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/DirectiveArgumentType.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/EchoDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/EchoDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/ElseDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/ElseDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/EndDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/EndDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/EndIfDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/EndIfDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/ErrorDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/ErrorDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/ExcludeIfDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/ExcludeIfDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/ExitDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/ExitDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/ExitIfDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/ExitIfDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/FlushDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/FlushDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/GlobalDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/GlobalDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/GlobalElseDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/GlobalElseDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/GlobalEndIfDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/GlobalEndIfDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/GlobalIfDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/GlobalIfDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/IfDefDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/IfDefDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/IfDefinedDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/IfDefinedDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/IfDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/IfDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/IfNDefDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/IfNDefDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/IncludeDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/IncludeDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/LocalDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/LocalDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/MsgDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/MsgDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/NoAutoFlushHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/NoAutoFlushHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/OutDisabledDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/OutDisabledDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/OutEnabledDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/OutEnabledDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/OutNameDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/OutNameDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/OutdirDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/OutdirDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/PostfixDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/PostfixDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/PrefixDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/PrefixDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/UndefDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/UndefDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/WarningDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/WarningDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/directives/WhileDirectiveHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/directives/WhileDirectiveHandler.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/exceptions/FilePositionInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/exceptions/FilePositionInfo.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/exceptions/PreprocessorException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/exceptions/PreprocessorException.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/Expression.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/Expression.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/ExpressionItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/ExpressionItem.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/ExpressionItemPriority.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/ExpressionItemPriority.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/ExpressionItemType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/ExpressionItemType.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/ExpressionParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/ExpressionParser.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/ExpressionTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/ExpressionTree.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/ExpressionTreeElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/ExpressionTreeElement.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/Value.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/Value.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/ValueType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/ValueType.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/Variable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/Variable.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/AbstractFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/AbstractFunction.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionABS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionABS.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionBINFILE.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionBINFILE.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionESC.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionESC.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionEVALFILE.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionEVALFILE.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionIS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionIS.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionISSUBSTR.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionISSUBSTR.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionROUND.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionROUND.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionSTR2CSV.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionSTR2CSV.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionSTR2GO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionSTR2GO.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionSTR2INT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionSTR2INT.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionSTR2JAVA.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionSTR2JAVA.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionSTR2JS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionSTR2JS.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionSTR2JSON.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionSTR2JSON.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionSTR2WEB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionSTR2WEB.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionSTR2XML.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionSTR2XML.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionSTRLEN.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionSTRLEN.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionTRIMLINES.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/FunctionTRIMLINES.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/xml/NodeContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/functions/xml/NodeContainer.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/operators/AbstractOperator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/operators/AbstractOperator.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/operators/OperatorADD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/operators/OperatorADD.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/operators/OperatorAND.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/operators/OperatorAND.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/operators/OperatorDIV.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/operators/OperatorDIV.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/operators/OperatorEQU.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/operators/OperatorEQU.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/operators/OperatorGREAT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/operators/OperatorGREAT.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/operators/OperatorGREATEQU.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/operators/OperatorGREATEQU.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/operators/OperatorLESS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/operators/OperatorLESS.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/operators/OperatorLESSEQU.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/operators/OperatorLESSEQU.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/operators/OperatorMOD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/operators/OperatorMOD.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/operators/OperatorMUL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/operators/OperatorMUL.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/operators/OperatorNOT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/operators/OperatorNOT.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/operators/OperatorNOTEQU.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/operators/OperatorNOTEQU.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/operators/OperatorOR.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/operators/OperatorOR.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/operators/OperatorSUB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/operators/OperatorSUB.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/expression/operators/OperatorXOR.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/expression/operators/OperatorXOR.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/extension/LogPreprocessorExtension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/extension/LogPreprocessorExtension.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/extension/PreprocessorExtension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/extension/PreprocessorExtension.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/gradle/JcpGradlePlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/gradle/JcpGradlePlugin.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/gradle/JcpTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/gradle/JcpTask.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/logger/PreprocessorLogger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/logger/PreprocessorLogger.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/logger/SystemOutLogger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/logger/SystemOutLogger.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/maven/MavenPropertiesImporter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/maven/MavenPropertiesImporter.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/maven/PreprocessMojo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/maven/PreprocessMojo.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/removers/AbstractCommentRemover.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/removers/AbstractCommentRemover.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/removers/CStyleCommentRemover.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/removers/CStyleCommentRemover.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/removers/JcpCommentLineRemover.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/removers/JcpCommentLineRemover.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/removers/JustCopyRemover.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/removers/JustCopyRemover.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/utils/AntPathMatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/utils/AntPathMatcher.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/utils/ArrayUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/utils/ArrayUtils.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/utils/GetUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/utils/GetUtils.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/utils/IOUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/utils/IOUtils.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/utils/PreprocessorUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/utils/PreprocessorUtils.java -------------------------------------------------------------------------------- /jcp/src/main/java/com/igormaznitsa/jcp/utils/ResettablePrinter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/java/com/igormaznitsa/jcp/utils/ResettablePrinter.java -------------------------------------------------------------------------------- /jcp/src/main/resources/META-INF/gradle-plugins/com.igormaznitsa.jcp.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/resources/META-INF/gradle-plugins/com.igormaznitsa.jcp.properties -------------------------------------------------------------------------------- /jcp/src/main/resources/com/igormaznitsa/jcp/ant/antlib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/resources/com/igormaznitsa/jcp/ant/antlib.xml -------------------------------------------------------------------------------- /jcp/src/main/resources/com/igormaznitsa/jcp/ant/tasks.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/resources/com/igormaznitsa/jcp/ant/tasks.properties -------------------------------------------------------------------------------- /jcp/src/main/resources/jcpversion.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/main/resources/jcpversion.properties -------------------------------------------------------------------------------- /jcp/src/site/markdown/examples/hello-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/site/markdown/examples/hello-world.md -------------------------------------------------------------------------------- /jcp/src/site/markdown/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/site/markdown/index.md -------------------------------------------------------------------------------- /jcp/src/site/markdown/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/site/markdown/usage.md -------------------------------------------------------------------------------- /jcp/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/site/site.xml -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/AbstractMockPreprocessorContextTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/AbstractMockPreprocessorContextTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/AbstractSpyPreprocessorContextTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/AbstractSpyPreprocessorContextTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/JCPreprocessorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/JCPreprocessorTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/TestUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/TestUtils.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/ant/PreprocessTaskTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/ant/PreprocessTaskTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/cmdline/AbstractCommandLineHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/cmdline/AbstractCommandLineHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/cmdline/AllowMergeBlockLineHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/cmdline/AllowMergeBlockLineHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/cmdline/CareForLastEolHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/cmdline/CareForLastEolHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/cmdline/ClearTargetFolderHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/cmdline/ClearTargetFolderHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/cmdline/CommentRemoverTypeHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/cmdline/CommentRemoverTypeHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/cmdline/ExcludeFoldersHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/cmdline/ExcludeFoldersHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/cmdline/FileExtensionsHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/cmdline/FileExtensionsHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/cmdline/GlobalVariableHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/cmdline/GlobalVariableHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/cmdline/HelpHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/cmdline/HelpHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/cmdline/InCharsetHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/cmdline/InCharsetHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/cmdline/KeepLineHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/cmdline/KeepLineHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/cmdline/OutCharsetHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/cmdline/OutCharsetHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/cmdline/RemoveCommentsHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/cmdline/RemoveCommentsHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/cmdline/SourceDirectoryHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/cmdline/SourceDirectoryHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/cmdline/UnknownAsFalseHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/cmdline/UnknownAsFalseHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/cmdline/VerboseHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/cmdline/VerboseHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/context/PreprocessorContextTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/context/PreprocessorContextTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/directives/AbortDirectiveHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/directives/AbortDirectiveHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/directives/ActionDirectiveHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/directives/ActionDirectiveHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/directives/DefineDirectiveHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/directives/DefineDirectiveHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/directives/DefinelDirectiveHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/directives/DefinelDirectiveHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/directives/EchoDirectiveHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/directives/EchoDirectiveHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/directives/ErrorDirectiveHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/directives/ErrorDirectiveHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/directives/ExitDirectiveHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/directives/ExitDirectiveHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/directives/ExitIfDirectiveHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/directives/ExitIfDirectiveHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/directives/FlushDirectiveHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/directives/FlushDirectiveHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/directives/GlobalDirectiveHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/directives/GlobalDirectiveHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/directives/GlobalIfElseEndifTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/directives/GlobalIfElseEndifTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/directives/IfDefDirectiveHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/directives/IfDefDirectiveHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/directives/IfNDefDirectiveHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/directives/IfNDefDirectiveHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/directives/IncludeDirectiveHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/directives/IncludeDirectiveHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/directives/LinesNotMatchException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/directives/LinesNotMatchException.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/directives/LocalDirectiveHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/directives/LocalDirectiveHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/directives/MsgDirectiveHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/directives/MsgDirectiveHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/directives/OnlySpacesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/directives/OnlySpacesTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/directives/OutNameDirectiveHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/directives/OutNameDirectiveHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/directives/OutdirDirectiveHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/directives/OutdirDirectiveHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/directives/SpecVarsROTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/directives/SpecVarsROTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/directives/SpecialDirectivesBlockTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/directives/SpecialDirectivesBlockTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/directives/SpecialDirectivesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/directives/SpecialDirectivesTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/directives/UndefDirectiveHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/directives/UndefDirectiveHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/directives/VariablePair.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/directives/VariablePair.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/directives/WarningDirectiveHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/directives/WarningDirectiveHandlerTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/exceptions/PreprocessorExceptionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/exceptions/PreprocessorExceptionTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/expression/ExpressionParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/expression/ExpressionParserTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/expression/ExpressionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/expression/ExpressionTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/expression/ExpressionTreeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/expression/ExpressionTreeTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/expression/functions/FunctionABSTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/expression/functions/FunctionABSTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/expression/functions/FunctionESCTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/expression/functions/FunctionESCTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/expression/functions/FunctionISTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/expression/functions/FunctionISTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/expression/functions/FunctionROUNDTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/expression/functions/FunctionROUNDTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/expression/operators/OperatorADDTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/expression/operators/OperatorADDTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/expression/operators/OperatorANDTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/expression/operators/OperatorANDTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/expression/operators/OperatorDIVTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/expression/operators/OperatorDIVTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/expression/operators/OperatorEQUTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/expression/operators/OperatorEQUTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/expression/operators/OperatorGREATTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/expression/operators/OperatorGREATTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/expression/operators/OperatorLESSTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/expression/operators/OperatorLESSTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/expression/operators/OperatorMODTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/expression/operators/OperatorMODTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/expression/operators/OperatorMULTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/expression/operators/OperatorMULTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/expression/operators/OperatorNOTTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/expression/operators/OperatorNOTTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/expression/operators/OperatorORTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/expression/operators/OperatorORTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/expression/operators/OperatorSUBTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/expression/operators/OperatorSUBTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/expression/operators/OperatorXORTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/expression/operators/OperatorXORTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/maven/MavenPropertiesImporterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/maven/MavenPropertiesImporterTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/maven/PreprocessMojoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/maven/PreprocessMojoTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/removers/AbstractCommentRemoverTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/removers/AbstractCommentRemoverTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/removers/CStyleCommentsRemoverTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/removers/CStyleCommentsRemoverTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/removers/JcpCommentLineRemoverTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/removers/JcpCommentLineRemoverTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/removers/JustCopyCommentsRemoverTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/removers/JustCopyCommentsRemoverTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/usecases/AbortTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/usecases/AbortTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/usecases/AbstractUseCaseTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/usecases/AbstractUseCaseTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/usecases/BinFileTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/usecases/BinFileTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/usecases/DefUndefTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/usecases/DefUndefTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/usecases/EvalFileTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/usecases/EvalFileTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/usecases/ExternalGlobalDefFileTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/usecases/ExternalGlobalDefFileTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/usecases/GenerationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/usecases/GenerationTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/usecases/IncludeAndExitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/usecases/IncludeAndExitTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/usecases/InsidePreprocessingTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/usecases/InsidePreprocessingTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/usecases/PrefixPostfixTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/usecases/PrefixPostfixTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/usecases/PreserveIndentOffTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/usecases/PreserveIndentOffTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/usecases/PreserveIndentOnTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/usecases/PreserveIndentOnTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/usecases/SimpleTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/usecases/SimpleTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/usecases/SpacesBeforeDirectivesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/usecases/SpacesBeforeDirectivesTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/usecases/StaticSiteTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/usecases/StaticSiteTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/usecases/Str2JavaTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/usecases/Str2JavaTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/usecases/StringDirectiveTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/usecases/StringDirectiveTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/usecases/TextBufferVariablesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/usecases/TextBufferVariablesTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/usecases/UnknownVarAsFalseTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/usecases/UnknownVarAsFalseTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/usecases/UsePrefixAsMultilineTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/usecases/UsePrefixAsMultilineTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/usecases/UserFunctionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/usecases/UserFunctionTest.java -------------------------------------------------------------------------------- /jcp/src/test/java/com/igormaznitsa/jcp/utils/PreprocessorUtilsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/java/com/igormaznitsa/jcp/utils/PreprocessorUtilsTest.java -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/cmdline/global_variable_def.txt: -------------------------------------------------------------------------------- 1 | #some comment 2 | test="hello world" 3 | -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/context/spacedFile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/context/spacedFile.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/context/standardFile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/context/standardFile.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_abort.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_abort.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_action.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_action.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_define.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_define.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_definel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_definel.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_echo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_echo.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_error.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_error.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_excludeif.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_excludeif.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_exit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_exit.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_exitif.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_exitif.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_global.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_global.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_if_else_endif.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_if_else_endif.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_ifdef.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_ifdef.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_ifdefined.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_ifdefined.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_ifndef.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_ifndef.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_include.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_include.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_include2.txt: -------------------------------------------------------------------------------- 1 | This text must be included 2 | and this one too -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_include3.txt: -------------------------------------------------------------------------------- 1 | Absolute path -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_local.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_local.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_msg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_msg.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_outdir.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_outdir.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_outdisabled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_outdisabled.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_outenabled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_outenabled.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_outname.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_outname.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_prefixpostfix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_prefixpostfix.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_special.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_special.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_special_block.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_special_block.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_undef.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_undef.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_warning.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_warning.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/only_spaces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/directives/only_spaces.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/specvars_ro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/directives/specvars_ro.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/exceptions/wrong_bracket.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/exceptions/wrong_bracket.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/exceptions/wrong_bracket_closing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/exceptions/wrong_bracket_closing.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/exceptions/wrong_bracket_include.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/exceptions/wrong_bracket_include.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/expression/functions/eval/TestBin.txt: -------------------------------------------------------------------------------- 1 | Hello Preprocessor! -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/expression/functions/xml/noxml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/expression/functions/xml/noxml.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/expression/functions/xml/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/expression/functions/xml/test.xml -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/global_error_at.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/global_error_at.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/global_ok.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/global_ok.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/maven/test.pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/maven/test.pom.xml -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/removers/java/etalon.etl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/removers/java/etalon.etl -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/removers/java/test_java.ppp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/removers/java/test_java.ppp -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/AbortTest/etl/text.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 3 3 | 5 4 | -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/AbortTest/src/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/AbortTest/src/text.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/AbortTest/src/text1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/AbortTest/src/text1.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/AbortTest/src/text2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/AbortTest/src/text2.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/AbortTest/src/text3.txt: -------------------------------------------------------------------------------- 1 | //#excludeif true 2 | 5 3 | //#abort expected 4 | 6 5 | -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/BinFileTest/etl/body.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/BinFileTest/etl/body.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/BinFileTest/src/body.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/BinFileTest/src/body.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/BinFileTest/src/file.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/BinFileTest/src/file.bin -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/DefUndefTest/etl/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/DefUndefTest/etl/text.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/DefUndefTest/src/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/DefUndefTest/src/text.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/EvalFileTest/etl/newfolder/file1.txt: -------------------------------------------------------------------------------- 1 | File One ODYN 2 | end 3 | -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/EvalFileTest/etl/newfolder/file2.txt: -------------------------------------------------------------------------------- 1 | File Two DVA 2 | end 3 | -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/EvalFileTest/src/_file1.txt: -------------------------------------------------------------------------------- 1 | //#excludeif TRUE 2 | File One /*$SOME_TEXT$*/ -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/EvalFileTest/src/_file2.txt: -------------------------------------------------------------------------------- 1 | //#excludeif TRUE 2 | File Two /*$SOME_TEXT$*/ -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/EvalFileTest/src/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/EvalFileTest/src/text.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/ExternalGlobalDefFileTest/etl/test.txt: -------------------------------------------------------------------------------- 1 | hello world 2 | see on Java Comment Preprocessor 3 | end 4 | -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/GenerationTest/etl/file1.ttt: -------------------------------------------------------------------------------- 1 | file 1 2 | -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/GenerationTest/etl/file2.ttt: -------------------------------------------------------------------------------- 1 | file 2 2 | -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/GenerationTest/etl/file3.ttt: -------------------------------------------------------------------------------- 1 | file 3 2 | -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/GenerationTest/src/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/GenerationTest/src/text.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/IncludeAndExitTest/etl/text.txt: -------------------------------------------------------------------------------- 1 | start 2 | 1 3 | 2 4 | 3 5 | 4 6 | 5 7 | true 8 | end 9 | -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/IncludeAndExitTest/src/text2.txt: -------------------------------------------------------------------------------- 1 | //#excludeif true 2 | /*$HELLO$*/ 3 | //#exit 4 | World -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/InsidePreprocessingTest/src/text.txt: -------------------------------------------------------------------------------- 1 | start 2 | /*$evalfile("./some.txt")$*/end -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/SimpleTest/etl/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/SimpleTest/etl/text.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/SimpleTest/src/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/SimpleTest/src/text.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/cc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/cc.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/cc_lft.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/cc_lft.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/eng/end.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/i_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/i_icon.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/index.htm -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/ledoff.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/ledoff.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/ledon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/ledon.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/x_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/x_icon.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/about.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/about.htm -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/cc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/cc.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/cc_lft.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/cc_lft.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games.htm -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games.xml -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/i_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/i_icon.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/index.htm -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/job.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/job.htm -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/ledoff.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/ledoff.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/ledon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/ledon.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/main.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/main.htm -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/news.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/news.htm -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/news.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/news.xml -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/site.xml -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/x_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/x_icon.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/Str2JavaTest/etl/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/Str2JavaTest/etl/text.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/Str2JavaTest/src/body.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/Str2JavaTest/src/body.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/Str2JavaTest/src/str.txt: -------------------------------------------------------------------------------- 1 | //#excludeif true 2 | Just some string -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/Str2JavaTest/src/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/Str2JavaTest/src/text.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/UserFunctionTest/etl/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/UserFunctionTest/etl/text.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/UserFunctionTest/src/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/UserFunctionTest/src/text.txt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/utils/somefile.txt: -------------------------------------------------------------------------------- 1 | it's just a some file -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/HEAD/pom.xml --------------------------------------------------------------------------------