├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ └── run-maven-tests.yml ├── .gitignore ├── .projectKnowledge ├── JCPreprocessor.mmd └── documap.mmd ├── LICENSE ├── README.md ├── assets ├── documap.png ├── github1280x640.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-5 │ ├── 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-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-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 │ │ │ ├── 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 │ │ │ ├── EnvironmentVariableProcessor.java │ │ │ ├── JCPSpecialVariableProcessor.java │ │ │ ├── PreprocessingState.java │ │ │ ├── PreprocessorContext.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 │ │ │ └── ResetablePrinter.java │ └── resources │ │ ├── META-INF │ │ └── gradle-plugins │ │ │ └── com.igormaznitsa.jcp.properties │ │ ├── com │ │ └── igormaznitsa │ │ │ └── jcp │ │ │ └── ant │ │ │ ├── antlib.xml │ │ │ └── tasks.properties │ │ └── jcpversion.props │ └── test │ ├── java │ └── com │ │ └── igormaznitsa │ │ └── jcp │ │ ├── AbstractMockPreprocessorContextTest.java │ │ ├── AbstractSpyPreprocessorContextTest.java │ │ ├── JCPreprocessorTest.java │ │ ├── TestUtils.java │ │ ├── ant │ │ └── PreprocessTaskTest.java │ │ ├── cmdline │ │ ├── AbstractCommandLineHandlerTest.java │ │ ├── ActionPreprocessorExtensionHandlerTest.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 │ │ ├── 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 │ │ ├── UnknownVarAsFalseTest.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_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 │ ├── UnknownVarAsFalseTest │ │ ├── etl │ │ │ └── body.txt │ │ └── src │ │ │ └── body.txt │ └── UserFunctionTest │ │ ├── etl │ │ └── text.txt │ │ └── src │ │ └── text.txt │ └── utils │ └── somefile.txt └── pom.xml /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=false 2 | * -crlf -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "maven" 4 | directory: "/" 5 | schedule: 6 | interval: "daily" 7 | rebase-strategy: "disabled" 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/.gradle/ 2 | **/build/ 3 | **/target/ 4 | /nbproject/ 5 | **/dependency-reduced-pom.xml 6 | *.iml 7 | /.idea/ 8 | /.idea/libraries 9 | /jcp-tests/jcp-test-jep238/build.log 10 | /jcp-tests/jcp-test-gradle/.buildProfile/report/ 11 | /jcp/.flattened-pom.xml 12 | -------------------------------------------------------------------------------- /assets/documap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/assets/documap.png -------------------------------------------------------------------------------- /assets/github1280x640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/assets/github1280x640.png -------------------------------------------------------------------------------- /jcp-tests/extlibs/gradle-tooling-api-5.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp-tests/extlibs/gradle-tooling-api-5.1.jar -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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: -------------------------------------------------------------------------------- 1 | 2 | 3 | #008577 4 | #00574B 5 | #D81B60 6 | 7 | -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | JcpAndroid 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /jcp-tests/jcp-test-android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /jcp-tests/jcp-test-ant/src/test/resources/config.cfg: -------------------------------------------------------------------------------- 1 | #some comment 2 | cfg.test="hellocfg" 3 | -------------------------------------------------------------------------------- /jcp-tests/jcp-test-gradle-5/configFile.txt: -------------------------------------------------------------------------------- 1 | # config file for build 2 | someGlobalVar="HUZZAA!" -------------------------------------------------------------------------------- /jcp-tests/jcp-test-gradle-5/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'jcp-test-gradle' -------------------------------------------------------------------------------- /jcp-tests/jcp-test-gradle-5/src/main/java/com/igormaznitsa/jcp/it/gradle/Some.java: -------------------------------------------------------------------------------- 1 | package com.igormaznitsa.jcp.it.gradle; 2 | 3 | public class Some { 4 | 5 | public String getText() { 6 | return "Some text"; 7 | } 8 | 9 | } -------------------------------------------------------------------------------- /jcp-tests/jcp-test-gradle-6/configFile.txt: -------------------------------------------------------------------------------- 1 | # config file for build 2 | someGlobalVar="HUZZAA!" -------------------------------------------------------------------------------- /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/Some.java: -------------------------------------------------------------------------------- 1 | package com.igormaznitsa.jcp.it.gradle; 2 | 3 | public class Some { 4 | 5 | public String getText() { 6 | return "Some text"; 7 | } 8 | 9 | } -------------------------------------------------------------------------------- /jcp-tests/jcp-test-gradle-7/configFile.txt: -------------------------------------------------------------------------------- 1 | # config file for build 2 | someGlobalVar="HUZZAA!" -------------------------------------------------------------------------------- /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/Some.java: -------------------------------------------------------------------------------- 1 | package com.igormaznitsa.jcp.it.gradle; 2 | 3 | public class Some { 4 | 5 | public String getText() { 6 | return "Some text"; 7 | } 8 | 9 | } -------------------------------------------------------------------------------- /jcp-tests/jcp-test-gradle-8/configFile.txt: -------------------------------------------------------------------------------- 1 | # config file for build 2 | someGlobalVar="HUZZAA!" -------------------------------------------------------------------------------- /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/Some.java: -------------------------------------------------------------------------------- 1 | package com.igormaznitsa.jcp.it.gradle; 2 | 3 | public class Some { 4 | 5 | public String getText() { 6 | return "Some text"; 7 | } 8 | 9 | } -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/about.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp-tests/jcp-test-static-site/src/main/resources/cc_rght.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/contacts.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp-tests/jcp-test-static-site/src/main/resources/contacts.htm -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/gamelist.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp-tests/jcp-test-static-site/src/main/resources/gamelist.htm -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/airaggression_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp-tests/jcp-test-static-site/src/main/resources/games/fruitmania_splash.jpg -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/games/hardday_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp-tests/jcp-test-static-site/src/main/resources/hotnews.htm -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/i_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp-tests/jcp-test-static-site/src/main/resources/index.htm -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/ledoff.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp-tests/jcp-test-static-site/src/main/resources/logos/simone.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/news.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp-tests/jcp-test-static-site/src/main/resources/news.htm -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/rus/send_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp-tests/jcp-test-static-site/src/main/resources/rus/send_ok.html -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/undercon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp-tests/jcp-test-static-site/src/main/resources/undercon.gif -------------------------------------------------------------------------------- /jcp-tests/jcp-test-static-site/src/main/resources/wap/logo.wbmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp-tests/jcp-test-static-site/src/main/resources/wap/logo.wbmp -------------------------------------------------------------------------------- /jcp/src/main/resources/META-INF/gradle-plugins/com.igormaznitsa.jcp.properties: -------------------------------------------------------------------------------- 1 | implementation-class=com.igormaznitsa.jcp.gradle.JcpGradlePlugin -------------------------------------------------------------------------------- /jcp/src/main/resources/com/igormaznitsa/jcp/ant/antlib.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /jcp/src/main/resources/com/igormaznitsa/jcp/ant/tasks.properties: -------------------------------------------------------------------------------- 1 | preprocess=com.igormaznitsa.jcp.ant.PreprocessTask -------------------------------------------------------------------------------- /jcp/src/main/resources/jcpversion.props: -------------------------------------------------------------------------------- 1 | version=${project.version} 2 | url=${project.url} 3 | year=${current.year} 4 | -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | // #local VAR="hello" 2 | // $ /*$VAR$*/ 3 | // $$ /*$VAR$*/ Universe 4 | some test/* - */must be removed -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/context/standardFile.txt: -------------------------------------------------------------------------------- 1 | //#local VAR="hello" 2 | //$ /*$VAR$*/ 3 | //$$ /*$VAR$*/ Universe 4 | some test/*-*/must be removed -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_abort.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | //#abort 6 | 5 7 | 6 8 | ---START_ETALON--- 9 | 1 10 | 2 11 | 3 12 | 4 13 | -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_action.txt: -------------------------------------------------------------------------------- 1 | test 2 | //#action 1,2,3+4,5+6,true,"hello," 3 | end 4 | //#if false 5 | //#action unexpected 6 | //#endif 7 | ---START_ETALON--- 8 | test 9 | end -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_comment_next_line.txt: -------------------------------------------------------------------------------- 1 | begin 2 | //#// 3 | hello 4 | //#// 5 | 6 | test 7 | ---START_ETALON--- 8 | begin 9 | // hello 10 | // 11 | test -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_define.txt: -------------------------------------------------------------------------------- 1 | test 2 | //#define somevar 3 | //#define somenum 3*8 4 | /*$somevar$*/ /*$somenum$*/ 5 | end 6 | ---START_ETALON--- 7 | test 8 | true 24 9 | end -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_definel.txt: -------------------------------------------------------------------------------- 1 | test 2 | //#definel somevar // test 3 | //#definel somenum 3*8 4 | /*$somevar$*/ /*$somenum$*/ 5 | end 6 | ---START_ETALON--- 7 | test 8 | true 24 9 | end -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_echo.txt: -------------------------------------------------------------------------------- 1 | start 2 | //#local test=1 3 | //#echo string /*$test+1$*/ ok 4 | end 5 | ---START_ETALON--- 6 | start 7 | end -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_error.txt: -------------------------------------------------------------------------------- 1 | start 2 | //#local test=1 3 | //#error "string"+(test+1) 4 | end 5 | ---START_ETALON--- 6 | start 7 | end -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_excludeif.txt: -------------------------------------------------------------------------------- 1 | some text 2 | test 3 | //#excludeif true 4 | //#_if false 5 | //#excludeif false 6 | //#_endif 7 | //#excludeif hello+world 8 | test -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_exit.txt: -------------------------------------------------------------------------------- 1 | test 2 | //#exit 3 | unexpected 4 | ---START_ETALON--- 5 | test -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_exitif.txt: -------------------------------------------------------------------------------- 1 | test 2 | //#exitif false 3 | expected 4 | //#exitif true 5 | unexpected 6 | ---START_ETALON--- 7 | test 8 | expected -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_global.txt: -------------------------------------------------------------------------------- 1 | //#global xxx=10 2 | ttt 3 | ---START_ETALON--- 4 | ttt -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_globalifelseendif2.txt: -------------------------------------------------------------------------------- 1 | //#if true 2 | a 3 | //#_if 0219384092384091 4 | b 5 | //#_if true 6 | //#else 7 | c 8 | //#_endif 9 | d 10 | //#_else 11 | //#endif 12 | ---START_ETALON--- 13 | a 14 | b -------------------------------------------------------------------------------- /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_msg.txt: -------------------------------------------------------------------------------- 1 | start 2 | //#local test=1 3 | //#msg string /*$test+1$*/ ok 4 | //#msg string /*$6*8$*/ ok 5 | end 6 | ---START_ETALON--- 7 | start 8 | end -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_outdir.txt: -------------------------------------------------------------------------------- 1 | //#local path="a/" 2 | //#outdir path+"expected" 3 | //#if false 4 | //#outdir path+"unexpected" 5 | //#endif 6 | /*$jcp.dst.dir$*/ 7 | ok 8 | ---START_ETALON--- 9 | a/expected 10 | ok -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_outdisabled.txt: -------------------------------------------------------------------------------- 1 | hello world 2 | //#- 3 | //#if true 4 | unexpected text 5 | //#endif 6 | ---START_ETALON--- 7 | hello world -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_outenabled.txt: -------------------------------------------------------------------------------- 1 | hello world 2 | //#- 3 | unexpected text 4 | //#+ 5 | expected text 6 | ---START_ETALON--- 7 | hello world 8 | expected text -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_outname.txt: -------------------------------------------------------------------------------- 1 | //#outname "expected.java" 2 | //#if false 3 | //#outname "unexpected.html" 4 | //#endif 5 | /*$jcp.dst.name$*/ 6 | ok 7 | ---START_ETALON--- 8 | expected.java 9 | ok -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_special.txt: -------------------------------------------------------------------------------- 1 | //$hello /*$111+112$*/ world 2 | //$$hello /*$111+112$*/ world 3 | hello/*-*/world 4 | ---START_ETALON--- 5 | hello 223 world 6 | hello /*$111+112$*/ world 7 | hello -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_undef.txt: -------------------------------------------------------------------------------- 1 | test 2 | //#definel localone 3 | /*$somevar$*/ /*$localone$*/ 4 | //#undef somevar 5 | //#undef localone 6 | end 7 | ---START_ETALON--- 8 | test 9 | true true 10 | end -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/directives/directive_warning.txt: -------------------------------------------------------------------------------- 1 | start 2 | //#local test=1 3 | //#warning "string"+(test+1) 4 | end 5 | ---START_ETALON--- 6 | start 7 | end -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/expression/functions/eval/TestBin.txt: -------------------------------------------------------------------------------- 1 | Hello Preprocessor! -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/expression/functions/eval/TestBinLong.txt: -------------------------------------------------------------------------------- 1 | какие то русские буквы 2 | Hello Preprocessor! it is very very very long line to fill the file! sometime it is useful for tests! 3 | als I decided to add one more line. -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/expression/functions/eval/TestEvalWithIncluded.java: -------------------------------------------------------------------------------- 1 | //#- 2 | public final class TestEvalWithIncluded { 3 | public void main(String ... args){ 4 | //#+ 5 | /*$evalfile("./TestEval.java")+__filename__$*/ 6 | //#- 7 | } 8 | } 9 | //#+ 10 | -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/expression/functions/xml/noxml.txt: -------------------------------------------------------------------------------- 1 | adslkj ql;d 2 | sd 3 | sad 4 | sadsa d 5 | as 6 | 7 | wqe 8 | sd 9 | sad 10 | sad -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/global_error_at.txt: -------------------------------------------------------------------------------- 1 | # error at the string 8 2 | 3 | 4 | 5 | 6 | 7 | 8 | @yyejjw.txt 9 | var="h" -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/global_ok.txt: -------------------------------------------------------------------------------- 1 | # this is a comment 2 | #@ 3 | #@@@@@ 4 | #@@@ 5 | 6 | 7 | 8 | 9 | 10 | 11 | /T:ISO-8859-1 12 | 13 | globalVar1="hello world" 14 | #tttest 15 | 16 | globalVar2=1*2+1 17 | 18 | 19 | -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | //#if false 2 | //#abort unexpected 3 | //#endif 4 | //#include "text1.txt" 5 | end 6 | -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/AbortTest/src/text1.txt: -------------------------------------------------------------------------------- 1 | //#excludeif true 2 | 1 3 | //#include "text2.txt" 4 | 2 5 | -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/AbortTest/src/text2.txt: -------------------------------------------------------------------------------- 1 | //#excludeif true 2 | 3 3 | //#include "text3.txt" 4 | 4 5 | -------------------------------------------------------------------------------- /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/src/file.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/BinFileTest/src/file.bin -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/DefUndefTest/etl/text.txt: -------------------------------------------------------------------------------- 1 | expected1 2 | expected2 3 | expected3 4 | -------------------------------------------------------------------------------- /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/ExternalGlobalDefFileTest/etl/test.txt: -------------------------------------------------------------------------------- 1 | hello world 2 | see on Java Comment Preprocessor 3 | end 4 | -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/ExternalGlobalDefFileTest/list.cfg: -------------------------------------------------------------------------------- 1 | var1="world" 2 | var2="Java "+"Comment "+"Preprocessor" 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/ExternalGlobalDefFileTest/src/test.txt: -------------------------------------------------------------------------------- 1 | hello /*$var1$*/ 2 | see on /*$var2$*/ 3 | end -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | //#noautoflush 2 | //#define COUNTER 1 3 | //#while COUNTER<=3 4 | file /*$COUNTER$*/ 5 | //#outname "file"+COUNTER+".ttt" 6 | //#define COUNTER COUNTER+1 7 | //#msg "Counter is "+COUNTER 8 | //#flush 9 | //#end -------------------------------------------------------------------------------- /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/text.txt: -------------------------------------------------------------------------------- 1 | start 2 | //#include "text1.txt" 3 | //#definel HELLO 4 | //#include "text2.txt" 5 | //#if false 6 | //#exit 7 | //#else 8 | end 9 | //#endif 10 | //#exit 11 | unsuspected text 12 | -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/IncludeAndExitTest/src/text1.txt: -------------------------------------------------------------------------------- 1 | //#excludeif true 2 | 1 3 | 2 4 | 3 5 | //#exitif false 6 | 4 7 | 5 8 | //#exitif true 9 | 6 10 | 7 -------------------------------------------------------------------------------- /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/etl/text.txt: -------------------------------------------------------------------------------- 1 | start 2 | the prefix 3 | the middle 4 | the postfix 5 | end 6 | -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/InsidePreprocessingTest/src/some.txt: -------------------------------------------------------------------------------- 1 | //#excludeif true 2 | //#postfix+ 3 | the postfix 4 | //#postfix- 5 | //#prefix+ 6 | the prefix 7 | //#prefix- 8 | the middle 9 | -------------------------------------------------------------------------------- /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/PrefixPostfixTest/etl/text.txt: -------------------------------------------------------------------------------- 1 | the most first start 2 | start 3 | middle 4 | middle2 5 | the first line in postfix 6 | the end 7 | -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/PreserveIndentOffTest/etl/text.txt: -------------------------------------------------------------------------------- 1 | test var has HUZZAAA! value 2 | test var has HUZZAAA! value 3 | test var has /*$TEST_VAR$*/ value 4 | test var has /*$TEST_VAR$*/ value 5 | -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/PreserveIndentOnTest/etl/text.txt: -------------------------------------------------------------------------------- 1 | test var has HUZZAAA! value 2 | test var has HUZZAAA! value 3 | test var has /*$TEST_VAR$*/ value 4 | test var has /*$TEST_VAR$*/ value 5 | -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/SpacesBeforeDirectivesNotAllowedTest/etl/body.txt: -------------------------------------------------------------------------------- 1 | // #if SOME 2 | text1 3 | // #else 4 | text2 5 | // #endif 6 | -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/SpacesBeforeDirectivesNotAllowedTest/src/body.txt: -------------------------------------------------------------------------------- 1 | //#local SOME=true 2 | // #if SOME 3 | text1 4 | // #else 5 | text2 6 | // #endif 7 | 8 | -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/SpacesBeforeDirectivesTest/etl/body.txt: -------------------------------------------------------------------------------- 1 | all ok 2 | helloworldhelloworld 3 | line1 4 | line2 5 | hurraaa+HELLO 6 | hry hry +/* $SOME_VAR$ */ 7 | -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/cc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/cc_lft.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/cc_rght.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/cc_rght.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/games/airboil_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/airboil_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/airboil_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/airboil_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/airboil_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/airboil_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/airboil_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/airboil_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/aneks_ny2006_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/aneks_ny2006_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/aneks_ny2006_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/aneks_ny2006_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/aneks_ny2006_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/aneks_ny2006_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/blazinggears_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/blazinggears_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/blazinggears_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/blazinggears_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/blazinggears_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/blazinggears_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/cockroach_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/cockroach_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/cockroach_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/cockroach_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/cockroach_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/cockroach_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/cockroach_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/cockroach_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/coconutsfall_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/coconutsfall_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/coconutsfall_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/coconutsfall_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/conecone_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/conecone_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/conecone_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/conecone_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/conecone_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/conecone_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/conecone_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/conecone_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/drunkman_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/drunkman_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/drunkman_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/drunkman_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/drunkman_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/drunkman_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/drunkman_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/drunkman_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/firingline_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/firingline_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/firingline_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/firingline_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/firingline_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/firingline_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/fisher_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/fisher_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/fisher_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/fisher_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/fisher_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/fisher_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/fisher_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/fisher_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/fruitmania_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/fruitmania_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/fruitmania_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/fruitmania_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/fruitmania_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/fruitmania_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/hardday_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/hardday_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/hardday_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/hardday_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/hardday_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/hardday_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/hardday_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/hardday_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/hunt_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/hunt_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/hunt_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/hunt_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/hunt_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/hunt_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/hunt_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/hunt_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/icegifts_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/icegifts_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/icegifts_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/icegifts_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/icegifts_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/icegifts_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/icegifts_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/icegifts_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/ironstream_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/ironstream_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/ironstream_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/ironstream_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/ironstream_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/ironstream_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/kalah_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/kalah_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/kalah_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/kalah_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/kalah_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/kalah_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/kalah_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/kalah_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/kickkick_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/kickkick_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/kickkick_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/kickkick_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/kickkick_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/kickkick_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/kickkick_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/kickkick_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/lifesaver_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/lifesaver_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/lifesaver_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/lifesaver_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/lifesaver_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/lifesaver_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/livebridge_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/livebridge_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/livebridge_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/livebridge_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/livebridge_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/livebridge_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/mtvpillow_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/mtvpillow_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/mtvpillow_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/mtvpillow_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/mtvpillow_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/mtvpillow_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/mtvpuzzle_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/mtvpuzzle_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/mtvpuzzle_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/mtvpuzzle_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/mtvpuzzle_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/mtvpuzzle_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/mtvstage_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/mtvstage_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/mtvstage_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/mtvstage_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/mtvstage_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/mtvstage_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/mtvstage_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/mtvstage_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/nimble_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/nimble_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/nimble_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/nimble_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/nimble_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/nimble_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/nimble_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/nimble_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/oysterbank_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/oysterbank_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/oysterbank_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/oysterbank_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/oysterbank_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/oysterbank_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/searoad_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/searoad_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/searoad_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/searoad_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/searoad_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/searoad_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/searoad_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/searoad_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/searovers_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/searovers_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/searovers_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/searovers_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/searovers_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/searovers_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/smscat_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/smscat_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/smscat_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/smscat_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/smscat_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/smscat_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/smscat_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/smscat_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/spiders_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/spiders_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/spiders_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/spiders_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/spiders_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/spiders_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/spiders_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/spiders_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/starharbor_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/starharbor_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/starharbor_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/starharbor_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/starharbor_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/starharbor_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/tastydish_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/tastydish_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/tastydish_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/tastydish_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/tastydish_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/tastydish_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/vineyard_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/vineyard_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/vineyard_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/vineyard_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/vineyard_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/vineyard_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/vineyard_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/vineyard_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/waterway_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/waterway_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/waterway_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/waterway_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/waterway_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/waterway_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/waterway_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/waterway_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/wildballs_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/wildballs_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/wildballs_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/wildballs_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/wildballs_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/wildballs_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/wildroad_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/wildroad_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/wildroad_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/wildroad_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/wildroad_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/wildroad_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/wildroad_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/games/wildroad_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/i_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/i_icon.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/ledoff.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/ledon.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/logos/bee_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/logos/bee_logo.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/logos/infon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/logos/infon.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/logos/mega_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/logos/mega_logo.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/logos/mts_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/logos/mts_logo.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/logos/muzon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/logos/muzon.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/logos/nikita.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/logos/nikita.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/logos/playmobile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/logos/playmobile.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/logos/simone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/logos/simone.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/undercon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/undercon.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/wap/logo.wbmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/wap/logo.wbmp -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/etl/x_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/cc_lft.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/cc_rght.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/cc_rght.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/contacts.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/contacts.htm -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/gamelist.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/gamelist.htm -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/airboil_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/airboil_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/airboil_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/airboil_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/airboil_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/airboil_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/airboil_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/airboil_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/cockroach_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/cockroach_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/cockroach_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/cockroach_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/cockroach_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/cockroach_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/conecone_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/conecone_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/conecone_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/conecone_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/conecone_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/conecone_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/conecone_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/conecone_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/drunkman_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/drunkman_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/drunkman_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/drunkman_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/drunkman_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/drunkman_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/drunkman_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/drunkman_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/firingline_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/firingline_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/firingline_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/firingline_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/firingline_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/firingline_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/fisher_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/fisher_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/fisher_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/fisher_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/fisher_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/fisher_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/fisher_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/fisher_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/fruitmania_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/fruitmania_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/fruitmania_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/fruitmania_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/fruitmania_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/fruitmania_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/hardday_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/hardday_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/hardday_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/hardday_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/hardday_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/hardday_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/hardday_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/hardday_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/hunt_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/hunt_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/hunt_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/hunt_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/hunt_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/hunt_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/hunt_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/hunt_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/icegifts_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/icegifts_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/icegifts_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/icegifts_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/icegifts_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/icegifts_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/icegifts_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/icegifts_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/ironstream_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/ironstream_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/ironstream_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/ironstream_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/ironstream_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/ironstream_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/kalah_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/kalah_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/kalah_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/kalah_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/kalah_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/kalah_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/kalah_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/kalah_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/kickkick_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/kickkick_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/kickkick_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/kickkick_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/kickkick_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/kickkick_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/kickkick_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/kickkick_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/lifesaver_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/lifesaver_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/lifesaver_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/lifesaver_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/lifesaver_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/lifesaver_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/livebridge_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/livebridge_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/livebridge_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/livebridge_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/livebridge_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/livebridge_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/mtvpillow_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/mtvpillow_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/mtvpillow_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/mtvpillow_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/mtvpillow_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/mtvpillow_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/mtvpuzzle_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/mtvpuzzle_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/mtvpuzzle_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/mtvpuzzle_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/mtvpuzzle_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/mtvpuzzle_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/mtvstage_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/mtvstage_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/mtvstage_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/mtvstage_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/mtvstage_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/mtvstage_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/mtvstage_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/mtvstage_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/nimble_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/nimble_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/nimble_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/nimble_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/nimble_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/nimble_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/nimble_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/nimble_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/oysterbank_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/oysterbank_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/oysterbank_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/oysterbank_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/oysterbank_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/oysterbank_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/searoad_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/searoad_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/searoad_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/searoad_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/searoad_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/searoad_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/searoad_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/searoad_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/searovers_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/searovers_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/searovers_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/searovers_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/searovers_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/searovers_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/smscat_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/smscat_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/smscat_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/smscat_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/smscat_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/smscat_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/smscat_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/smscat_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/spiders_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/spiders_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/spiders_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/spiders_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/spiders_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/spiders_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/spiders_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/spiders_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/starharbor_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/starharbor_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/starharbor_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/starharbor_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/starharbor_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/starharbor_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/tastydish_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/tastydish_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/tastydish_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/tastydish_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/tastydish_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/tastydish_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/vineyard_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/vineyard_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/vineyard_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/vineyard_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/vineyard_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/vineyard_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/vineyard_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/vineyard_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/waterway_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/waterway_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/waterway_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/waterway_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/waterway_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/waterway_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/waterway_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/waterway_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/wildballs_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/wildballs_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/wildballs_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/wildballs_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/wildballs_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/wildballs_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/wildroad_scr1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/wildroad_scr1.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/wildroad_scr2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/wildroad_scr2.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/wildroad_scr3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/wildroad_scr3.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/wildroad_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/games/wildroad_splash.jpg -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/hotnews.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/hotnews.htm -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/i_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/index.htm -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/ledoff.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/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/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/ledon.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/logos/bee_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/logos/bee_logo.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/logos/infon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/logos/infon.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/logos/mega_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/logos/mega_logo.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/logos/mts_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/logos/mts_logo.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/logos/muzon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/logos/muzon.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/logos/nikita.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/logos/nikita.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/logos/playmobile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/logos/playmobile.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/logos/simone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/logos/simone.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/news.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/news.htm -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/rus/send_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/rus/send_error.html -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/rus/send_ok.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/rus/send_ok.html -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/undercon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/undercon.gif -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/wap/logo.wbmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/wap/logo.wbmp -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/x_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydac/java-comment-preprocessor/8b7904ed2820761ed560a857dbd43a3b1e2e311a/jcp/src/test/resources/com/igormaznitsa/jcp/usecases/StaticSiteTest/src/x_icon.gif -------------------------------------------------------------------------------- /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/StringDirectiveTest/etl/text.txt: -------------------------------------------------------------------------------- 1 | expected world 2 | expected /*$HELLO$*/ 3 | test 4 | -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/UnknownVarAsFalseTest/etl/body.txt: -------------------------------------------------------------------------------- 1 | false 2 | 123false 3 | must be 4 | huzzaaaaa! 5 | --- 6 | -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/UserFunctionTest/etl/text.txt: -------------------------------------------------------------------------------- 1 | hello test:yayaya 2 | -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/usecases/UserFunctionTest/src/text.txt: -------------------------------------------------------------------------------- 1 | //#action 1000,"hello",123 2 | hello /*$"test:"+$testfunc(1,"hry",3)$*/ 3 | //#action 1000,"hello",123 4 | -------------------------------------------------------------------------------- /jcp/src/test/resources/com/igormaznitsa/jcp/utils/somefile.txt: -------------------------------------------------------------------------------- 1 | it's just a some file --------------------------------------------------------------------------------