├── Code & Me Blog ├── .project ├── RESTEasy_client.psf ├── RESTEasy_client.zip ├── TableViewer_DnD_Sorting.psf ├── TableViewer_DnD_Sorting.zip ├── coreexpressions.psf ├── coreexpressions.zip ├── coreexpressions_samples.psf ├── coreexpressions_samples.zip ├── custom_builder.psf ├── custom_builder.zip ├── custom_service.psf ├── custom_service.zip ├── debugger_01_interpreter.psf ├── debugger_01_interpreter.zip ├── debugger_02_launching.psf ├── debugger_02_launching.zip ├── debugger_03_simple_debugger.psf ├── debugger_03_simple_debugger.zip ├── debugger_04_stepping.psf ├── debugger_04_stepping.zip ├── debugger_05_editor_breakpoints.psf ├── debugger_05_editor_breakpoints.zip ├── debugger_06_debugger_breakpoints.psf ├── debugger_06_debugger_breakpoints.zip ├── debugger_07_source_lookup.psf ├── debugger_07_source_lookup.zip ├── debugger_08_run_to_line.psf ├── debugger_08_run_to_line.zip ├── debugger_09_variables.psf ├── debugger_09_variables.zip ├── debugger_10_variable_editing.psf ├── debugger_10_variable_editing.zip ├── debugger_11_watch_expressions.psf ├── debugger_11_watch_expressions.zip ├── debugger_12_memory.psf ├── debugger_12_memory.zip ├── ease_interpreter_01_beanshell.psf ├── ease_interpreter_01_beanshell.zip ├── ease_interpreter_02_basic_interpreter.psf ├── ease_interpreter_02_basic_interpreter.zip ├── ease_interpreter_03_classloader.psf ├── ease_interpreter_03_classloader.zip ├── ease_interpreter_04_modules_support.psf ├── ease_interpreter_04_modules_support.zip ├── ease_interpreter_05_script_keywords.psf ├── ease_interpreter_05_script_keywords.zip ├── form_editor_with_xml_source_view.psf ├── form_editor_with_xml_source_view.zip ├── generic_drag_and_drop.psf ├── generic_drag_and_drop.zip ├── headless_application.psf ├── headless_application.zip ├── hiding_ui_elements_in_rcp.psf ├── hiding_ui_elements_in_rcp.zip ├── jenkins_01_empty_plugin.psf ├── jenkins_01_empty_plugin.zip ├── jenkins_02_builder_plugin.psf ├── jenkins_02_builder_plugin.zip ├── jenkins_03_text_input.psf ├── jenkins_03_text_input.zip ├── jenkins_04_unit_test.psf ├── jenkins_04_unit_test.zip ├── jenkins_05_combo_input.psf ├── jenkins_05_combo_input.zip ├── jenkins_06_advanced_configuration.psf ├── jenkins_06_advanced_configuration.zip ├── jenkins_07_pipeline.psf ├── jenkins_07_pipeline.zip ├── jfreechart.psf ├── jfreechart.zip ├── jni_made_easy.psf ├── jni_made_easy.zip ├── minimal_application.psf ├── minimal_application.zip ├── oomph_03_first_project_setup.psf ├── oomph_03_first_project_setup.zip ├── oomph_04_p2_install_tasks.psf ├── oomph_04_p2_install_tasks.zip ├── oomph_05_git_checkout.psf ├── oomph_05_git_checkout.zip ├── oomph_06_targlets.psf ├── oomph_06_targlets.zip ├── reusing_xml_source_editor.psf ├── reusing_xml_source_editor.zip ├── search_provider.psf ├── search_provider.zip ├── tracing.psf ├── tracing.zip ├── tycho_00_initial_setup.psf ├── tycho_00_initial_setup.zip ├── tycho_01_build_plugins.psf ├── tycho_01_build_plugins.zip ├── tycho_03_global_build_project.psf ├── tycho_03_global_build_project.zip ├── tycho_04_build_features.psf ├── tycho_04_build_features.zip ├── tycho_05_build_update_sites.psf ├── tycho_05_build_update_sites.zip ├── tycho_06_build_products.psf ├── tycho_06_build_products.zip ├── tycho_07_unit_tests.psf ├── tycho_07_unit_tests.zip ├── tycho_08_target_platform.psf ├── tycho_08_target_platform.zip ├── tycho_09_update_versions.psf ├── tycho_09_update_versions.zip ├── tycho_10_code_signing.psf ├── tycho_10_code_signing.zip ├── tycho_11_root_level_features.psf ├── tycho_11_root_level_features.zip ├── tycho_12_build_source_features.psf ├── tycho_12_build_source_features.zip ├── tycho_13_generate_javadoc.psf └── tycho_13_generate_javadoc.zip ├── LICENSE ├── README.md ├── coreexpressions ├── com.codeandme.coreexpressions.samples │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── plugin.xml │ └── src │ │ └── com │ │ └── codeandme │ │ └── coreexpressions │ │ └── samples │ │ ├── Login.java │ │ └── Logout.java └── com.codeandme.coreexpressions │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ └── MANIFEST.MF │ ├── build.properties │ ├── plugin.xml │ └── src │ └── com │ └── codeandme │ └── coreexpressions │ ├── ExamplePropertyTester.java │ └── ExampleSourceProvider.java ├── custom_builder └── com.codeandme.custombuilder │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ └── MANIFEST.MF │ ├── build.properties │ ├── epl-v10.html │ ├── license.html │ ├── plugin.xml │ └── src │ └── com │ └── codeandme │ └── custombuilder │ ├── builders │ └── MyBuilder.java │ ├── commands │ ├── AddBuilder.java │ └── RemoveBuilder.java │ └── propertytester │ └── TestBuilderEnabled.java ├── custom_installation_step ├── com.codeandme.touchpoint.action.feature │ ├── .project │ ├── build.properties │ └── feature.xml ├── com.codeandme.touchpoint.action │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── plugin.xml │ └── src │ │ └── com │ │ └── codeandme │ │ └── touchpoint │ │ └── action │ │ ├── Activator.java │ │ └── MyAction.java ├── com.codeandme.touchpoint.payload.feature │ ├── .project │ ├── build.properties │ └── feature.xml └── com.codeandme.touchpoint.payload │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ ├── MANIFEST.MF │ └── p2.inf │ ├── build.properties │ └── src │ └── com │ └── codeandme │ └── touchpoint │ └── payload │ └── Dummy.java ├── custom_service ├── com.codeandme.customservice.consumer │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── epl-v10.html │ ├── license.html │ ├── plugin.xml │ └── src │ │ └── com │ │ └── codeandme │ │ └── customservice │ │ └── consumer │ │ └── View.java └── com.codeandme.customservice │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ └── MANIFEST.MF │ ├── build.properties │ ├── epl-v10.html │ ├── license.html │ ├── plugin.xml │ └── src │ └── com │ └── codeandme │ └── customservice │ ├── CustomServiceFactory.java │ ├── CustomServiceImpl.java │ └── ICustomService.java ├── debugger ├── 01_interpreter │ └── com.codeandme.debugger.textinterpreter │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── src │ │ └── com │ │ └── codeandme │ │ └── debugger │ │ └── textinterpreter │ │ ├── IDebugger.java │ │ └── TextInterpreter.java ├── 02_launching │ └── com.codeandme.debugger.textinterpreter.ui │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── images │ │ └── launcher.png │ │ ├── license.html │ │ ├── plugin.xml │ │ └── src │ │ └── com │ │ └── codeandme │ │ └── debugger │ │ └── textinterpreter │ │ └── ui │ │ ├── TextLaunchConstants.java │ │ ├── TextLaunchDelegate.java │ │ └── tabs │ │ ├── LaunchConfigurationTabGroup.java │ │ ├── MainTab.java │ │ ├── ProjectContentProvider.java │ │ └── SourceFileContentProvider.java ├── 03_simple_debugger │ ├── com.codeandme.debugger.textinterpreter.debugger │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .options │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ ├── plugin.xml │ │ └── src │ │ │ └── com │ │ │ └── codeandme │ │ │ └── debugger │ │ │ └── textinterpreter │ │ │ └── debugger │ │ │ ├── Activator.java │ │ │ ├── TextDebugger.java │ │ │ ├── dispatcher │ │ │ ├── EventDispatchJob.java │ │ │ └── IEventProcessor.java │ │ │ ├── events │ │ │ ├── AbstractEvent.java │ │ │ ├── IDebugEvent.java │ │ │ ├── debugger │ │ │ │ ├── DebuggerStartedEvent.java │ │ │ │ ├── IDebuggerEvent.java │ │ │ │ ├── ResumedEvent.java │ │ │ │ └── TerminatedEvent.java │ │ │ └── model │ │ │ │ ├── IModelRequest.java │ │ │ │ └── ResumeRequest.java │ │ │ └── model │ │ │ ├── TextDebugElement.java │ │ │ ├── TextDebugTarget.java │ │ │ ├── TextProcess.java │ │ │ └── TextThread.java │ └── com.codeandme.debugger.textinterpreter.ui │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── images │ │ └── launcher.png │ │ ├── license.html │ │ ├── plugin.xml │ │ └── src │ │ └── com │ │ └── codeandme │ │ └── debugger │ │ └── textinterpreter │ │ └── ui │ │ ├── TextLaunchConstants.java │ │ ├── TextLaunchDelegate.java │ │ └── tabs │ │ ├── LaunchConfigurationTabGroup.java │ │ ├── MainTab.java │ │ ├── ProjectContentProvider.java │ │ └── SourceFileContentProvider.java ├── 04_stepping │ └── com.codeandme.debugger.textinterpreter.debugger │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .options │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ ├── plugin.xml │ │ └── src │ │ └── com │ │ └── codeandme │ │ └── debugger │ │ └── textinterpreter │ │ └── debugger │ │ ├── Activator.java │ │ ├── TextDebugger.java │ │ ├── dispatcher │ │ ├── EventDispatchJob.java │ │ └── IEventProcessor.java │ │ ├── events │ │ ├── AbstractEvent.java │ │ ├── IDebugEvent.java │ │ ├── debugger │ │ │ ├── DebuggerStartedEvent.java │ │ │ ├── IDebuggerEvent.java │ │ │ ├── ResumedEvent.java │ │ │ ├── SuspendedEvent.java │ │ │ └── TerminatedEvent.java │ │ └── model │ │ │ ├── DisconnectRequest.java │ │ │ ├── IModelRequest.java │ │ │ ├── ResumeRequest.java │ │ │ └── TerminateRequest.java │ │ └── model │ │ ├── TextDebugElement.java │ │ ├── TextDebugTarget.java │ │ ├── TextProcess.java │ │ └── TextThread.java ├── 05_editor_breakpoints │ └── com.codeandme.debugger.textinterpreter.debugger │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .options │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ ├── plugin.xml │ │ └── src │ │ └── com │ │ └── codeandme │ │ └── debugger │ │ └── textinterpreter │ │ └── debugger │ │ ├── Activator.java │ │ ├── TextDebugger.java │ │ ├── breakpoints │ │ ├── RulerToggleBreakpointAction.java │ │ ├── TextBreakpointAdapterFactory.java │ │ ├── TextLineBreakpoint.java │ │ └── TextLineBreakpointTarget.java │ │ ├── dispatcher │ │ ├── EventDispatchJob.java │ │ └── IEventProcessor.java │ │ ├── events │ │ ├── AbstractEvent.java │ │ ├── IDebugEvent.java │ │ ├── debugger │ │ │ ├── DebuggerStartedEvent.java │ │ │ ├── IDebuggerEvent.java │ │ │ ├── ResumedEvent.java │ │ │ ├── SuspendedEvent.java │ │ │ └── TerminatedEvent.java │ │ └── model │ │ │ ├── DisconnectRequest.java │ │ │ ├── IModelRequest.java │ │ │ ├── ResumeRequest.java │ │ │ └── TerminateRequest.java │ │ └── model │ │ ├── TextDebugElement.java │ │ ├── TextDebugModelPresentation.java │ │ ├── TextDebugTarget.java │ │ ├── TextProcess.java │ │ └── TextThread.java ├── 06_debugger_breakpoints │ └── com.codeandme.debugger.textinterpreter.debugger │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .options │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ ├── plugin.xml │ │ └── src │ │ └── com │ │ └── codeandme │ │ └── debugger │ │ └── textinterpreter │ │ └── debugger │ │ ├── Activator.java │ │ ├── TextDebugger.java │ │ ├── breakpoints │ │ ├── RulerToggleBreakpointAction.java │ │ ├── TextBreakpointAdapterFactory.java │ │ ├── TextLineBreakpoint.java │ │ └── TextLineBreakpointTarget.java │ │ ├── dispatcher │ │ ├── EventDispatchJob.java │ │ └── IEventProcessor.java │ │ ├── events │ │ ├── AbstractEvent.java │ │ ├── IDebugEvent.java │ │ ├── debugger │ │ │ ├── DebuggerStartedEvent.java │ │ │ ├── IDebuggerEvent.java │ │ │ ├── ResumedEvent.java │ │ │ ├── SuspendedEvent.java │ │ │ └── TerminatedEvent.java │ │ └── model │ │ │ ├── BreakpointRequest.java │ │ │ ├── DisconnectRequest.java │ │ │ ├── IModelRequest.java │ │ │ ├── ResumeRequest.java │ │ │ └── TerminateRequest.java │ │ └── model │ │ ├── TextDebugElement.java │ │ ├── TextDebugModelPresentation.java │ │ ├── TextDebugTarget.java │ │ ├── TextProcess.java │ │ └── TextThread.java ├── 07_source_lookup │ ├── com.codeandme.debugger.textinterpreter.debugger │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .options │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ ├── plugin.xml │ │ └── src │ │ │ └── com │ │ │ └── codeandme │ │ │ └── debugger │ │ │ └── textinterpreter │ │ │ └── debugger │ │ │ ├── Activator.java │ │ │ ├── TextDebugger.java │ │ │ ├── breakpoints │ │ │ ├── RulerToggleBreakpointAction.java │ │ │ ├── TextBreakpointAdapterFactory.java │ │ │ ├── TextLineBreakpoint.java │ │ │ └── TextLineBreakpointTarget.java │ │ │ ├── dispatcher │ │ │ ├── EventDispatchJob.java │ │ │ └── IEventProcessor.java │ │ │ ├── events │ │ │ ├── AbstractEvent.java │ │ │ ├── IDebugEvent.java │ │ │ ├── debugger │ │ │ │ ├── DebuggerStartedEvent.java │ │ │ │ ├── IDebuggerEvent.java │ │ │ │ ├── ResumedEvent.java │ │ │ │ ├── SuspendedEvent.java │ │ │ │ └── TerminatedEvent.java │ │ │ └── model │ │ │ │ ├── BreakpointRequest.java │ │ │ │ ├── DisconnectRequest.java │ │ │ │ ├── IModelRequest.java │ │ │ │ ├── ResumeRequest.java │ │ │ │ └── TerminateRequest.java │ │ │ └── model │ │ │ ├── TextDebugElement.java │ │ │ ├── TextDebugModelPresentation.java │ │ │ ├── TextDebugTarget.java │ │ │ ├── TextProcess.java │ │ │ ├── TextSourceLocator.java │ │ │ ├── TextStackFrame.java │ │ │ └── TextThread.java │ └── com.codeandme.debugger.textinterpreter.ui │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── images │ │ └── launcher.png │ │ ├── license.html │ │ ├── plugin.xml │ │ └── src │ │ └── com │ │ └── codeandme │ │ └── debugger │ │ └── textinterpreter │ │ └── ui │ │ ├── TextLaunchConstants.java │ │ ├── TextLaunchDelegate.java │ │ └── tabs │ │ ├── LaunchConfigurationTabGroup.java │ │ ├── MainTab.java │ │ ├── ProjectContentProvider.java │ │ └── SourceFileContentProvider.java ├── 08_run_to_line │ └── com.codeandme.debugger.textinterpreter.debugger │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .options │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── images │ │ └── run_to_line.gif │ │ ├── license.html │ │ ├── plugin.xml │ │ └── src │ │ └── com │ │ └── codeandme │ │ └── debugger │ │ └── textinterpreter │ │ └── debugger │ │ ├── Activator.java │ │ ├── TextDebugger.java │ │ ├── breakpoints │ │ ├── RulerToggleBreakpointAction.java │ │ ├── RunToLineAdapterFactory.java │ │ ├── RunToLineTarget.java │ │ ├── TextBreakpointAdapterFactory.java │ │ ├── TextLineBreakpoint.java │ │ ├── TextLineBreakpointTarget.java │ │ └── TextRunToLineBreakpoint.java │ │ ├── dispatcher │ │ ├── EventDispatchJob.java │ │ └── IEventProcessor.java │ │ ├── events │ │ ├── AbstractEvent.java │ │ ├── IDebugEvent.java │ │ ├── debugger │ │ │ ├── DebuggerStartedEvent.java │ │ │ ├── IDebuggerEvent.java │ │ │ ├── ResumedEvent.java │ │ │ ├── SuspendedEvent.java │ │ │ └── TerminatedEvent.java │ │ └── model │ │ │ ├── BreakpointRequest.java │ │ │ ├── DisconnectRequest.java │ │ │ ├── IModelRequest.java │ │ │ ├── ResumeRequest.java │ │ │ └── TerminateRequest.java │ │ └── model │ │ ├── TextDebugElement.java │ │ ├── TextDebugModelPresentation.java │ │ ├── TextDebugTarget.java │ │ ├── TextProcess.java │ │ ├── TextSourceLocator.java │ │ ├── TextStackFrame.java │ │ └── TextThread.java ├── 09_variables │ └── com.codeandme.debugger.textinterpreter.debugger │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .options │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── images │ │ └── run_to_line.gif │ │ ├── license.html │ │ ├── plugin.xml │ │ └── src │ │ └── com │ │ └── codeandme │ │ └── debugger │ │ └── textinterpreter │ │ └── debugger │ │ ├── Activator.java │ │ ├── TextDebugger.java │ │ ├── breakpoints │ │ ├── RulerToggleBreakpointAction.java │ │ ├── RunToLineAdapterFactory.java │ │ ├── RunToLineTarget.java │ │ ├── TextBreakpointAdapterFactory.java │ │ ├── TextLineBreakpoint.java │ │ ├── TextLineBreakpointTarget.java │ │ └── TextRunToLineBreakpoint.java │ │ ├── dispatcher │ │ ├── EventDispatchJob.java │ │ └── IEventProcessor.java │ │ ├── events │ │ ├── AbstractEvent.java │ │ ├── IDebugEvent.java │ │ ├── debugger │ │ │ ├── DebuggerStartedEvent.java │ │ │ ├── IDebuggerEvent.java │ │ │ ├── ResumedEvent.java │ │ │ ├── SuspendedEvent.java │ │ │ ├── TerminatedEvent.java │ │ │ └── VariablesEvent.java │ │ └── model │ │ │ ├── BreakpointRequest.java │ │ │ ├── DisconnectRequest.java │ │ │ ├── FetchVariablesRequest.java │ │ │ ├── IModelRequest.java │ │ │ ├── ResumeRequest.java │ │ │ └── TerminateRequest.java │ │ └── model │ │ ├── TextDebugElement.java │ │ ├── TextDebugModelPresentation.java │ │ ├── TextDebugTarget.java │ │ ├── TextProcess.java │ │ ├── TextSourceLocator.java │ │ ├── TextStackFrame.java │ │ ├── TextThread.java │ │ ├── TextValue.java │ │ └── TextVariable.java ├── 10_variable_editing │ └── com.codeandme.debugger.textinterpreter.debugger │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .options │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── images │ │ └── run_to_line.gif │ │ ├── license.html │ │ ├── plugin.xml │ │ └── src │ │ └── com │ │ └── codeandme │ │ └── debugger │ │ └── textinterpreter │ │ └── debugger │ │ ├── Activator.java │ │ ├── TextDebugger.java │ │ ├── breakpoints │ │ ├── RulerToggleBreakpointAction.java │ │ ├── RunToLineAdapterFactory.java │ │ ├── RunToLineTarget.java │ │ ├── TextBreakpointAdapterFactory.java │ │ ├── TextLineBreakpoint.java │ │ ├── TextLineBreakpointTarget.java │ │ └── TextRunToLineBreakpoint.java │ │ ├── dispatcher │ │ ├── EventDispatchJob.java │ │ └── IEventProcessor.java │ │ ├── events │ │ ├── AbstractEvent.java │ │ ├── IDebugEvent.java │ │ ├── debugger │ │ │ ├── DebuggerStartedEvent.java │ │ │ ├── IDebuggerEvent.java │ │ │ ├── ResumedEvent.java │ │ │ ├── SuspendedEvent.java │ │ │ ├── TerminatedEvent.java │ │ │ └── VariablesEvent.java │ │ └── model │ │ │ ├── BreakpointRequest.java │ │ │ ├── ChangeVariableRequest.java │ │ │ ├── DisconnectRequest.java │ │ │ ├── FetchVariablesRequest.java │ │ │ ├── IModelRequest.java │ │ │ ├── ResumeRequest.java │ │ │ └── TerminateRequest.java │ │ └── model │ │ ├── TextDebugElement.java │ │ ├── TextDebugModelPresentation.java │ │ ├── TextDebugTarget.java │ │ ├── TextProcess.java │ │ ├── TextSourceLocator.java │ │ ├── TextStackFrame.java │ │ ├── TextThread.java │ │ ├── TextValue.java │ │ └── TextVariable.java ├── 11_watch_expressions │ └── com.codeandme.debugger.textinterpreter.debugger │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .options │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── images │ │ └── run_to_line.gif │ │ ├── license.html │ │ ├── plugin.xml │ │ └── src │ │ └── com │ │ └── codeandme │ │ └── debugger │ │ └── textinterpreter │ │ └── debugger │ │ ├── Activator.java │ │ ├── TextDebugger.java │ │ ├── breakpoints │ │ ├── RulerToggleBreakpointAction.java │ │ ├── RunToLineAdapterFactory.java │ │ ├── RunToLineTarget.java │ │ ├── TextBreakpointAdapterFactory.java │ │ ├── TextLineBreakpoint.java │ │ ├── TextLineBreakpointTarget.java │ │ └── TextRunToLineBreakpoint.java │ │ ├── dispatcher │ │ ├── EventDispatchJob.java │ │ └── IEventProcessor.java │ │ ├── events │ │ ├── AbstractEvent.java │ │ ├── IDebugEvent.java │ │ ├── debugger │ │ │ ├── DebuggerStartedEvent.java │ │ │ ├── EvaluateExpressionResult.java │ │ │ ├── IDebuggerEvent.java │ │ │ ├── ResumedEvent.java │ │ │ ├── SuspendedEvent.java │ │ │ ├── TerminatedEvent.java │ │ │ └── VariablesEvent.java │ │ └── model │ │ │ ├── BreakpointRequest.java │ │ │ ├── ChangeVariableRequest.java │ │ │ ├── DisconnectRequest.java │ │ │ ├── EvaluateExpressionRequest.java │ │ │ ├── FetchVariablesRequest.java │ │ │ ├── IModelRequest.java │ │ │ ├── ResumeRequest.java │ │ │ └── TerminateRequest.java │ │ └── model │ │ ├── TextDebugElement.java │ │ ├── TextDebugModelPresentation.java │ │ ├── TextDebugTarget.java │ │ ├── TextProcess.java │ │ ├── TextSourceLocator.java │ │ ├── TextStackFrame.java │ │ ├── TextThread.java │ │ ├── TextValue.java │ │ ├── TextVariable.java │ │ ├── TextWatchExpressionDelegate.java │ │ └── TextWatchExpressionResult.java └── 12_memory │ └── com.codeandme.debugger.textinterpreter.debugger │ ├── .classpath │ ├── .gitignore │ ├── .options │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ └── MANIFEST.MF │ ├── build.properties │ ├── epl-v10.html │ ├── images │ └── run_to_line.gif │ ├── license.html │ ├── plugin.xml │ └── src │ └── com │ └── codeandme │ └── debugger │ └── textinterpreter │ └── debugger │ ├── Activator.java │ ├── TextDebugger.java │ ├── breakpoints │ ├── RulerToggleBreakpointAction.java │ ├── RunToLineAdapterFactory.java │ ├── RunToLineTarget.java │ ├── TextBreakpointAdapterFactory.java │ ├── TextLineBreakpoint.java │ ├── TextLineBreakpointTarget.java │ └── TextRunToLineBreakpoint.java │ ├── dispatcher │ ├── EventDispatchJob.java │ └── IEventProcessor.java │ ├── events │ ├── AbstractEvent.java │ ├── IDebugEvent.java │ ├── debugger │ │ ├── DebuggerStartedEvent.java │ │ ├── EvaluateExpressionResult.java │ │ ├── IDebuggerEvent.java │ │ ├── MemoryEvent.java │ │ ├── ResumedEvent.java │ │ ├── SuspendedEvent.java │ │ ├── TerminatedEvent.java │ │ └── VariablesEvent.java │ └── model │ │ ├── BreakpointRequest.java │ │ ├── ChangeVariableRequest.java │ │ ├── DisconnectRequest.java │ │ ├── EvaluateExpressionRequest.java │ │ ├── FetchMemoryRequest.java │ │ ├── FetchVariablesRequest.java │ │ ├── IModelRequest.java │ │ ├── ResumeRequest.java │ │ └── TerminateRequest.java │ └── model │ ├── TextDebugElement.java │ ├── TextDebugModelPresentation.java │ ├── TextDebugTarget.java │ ├── TextMemoryBlock.java │ ├── TextProcess.java │ ├── TextSourceLocator.java │ ├── TextStackFrame.java │ ├── TextThread.java │ ├── TextValue.java │ ├── TextVariable.java │ ├── TextWatchExpressionDelegate.java │ └── TextWatchExpressionResult.java ├── ease_interpreter ├── 01_beanshell │ ├── org.beanshell.playground │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── src │ │ │ └── org │ │ │ └── beanshell │ │ │ └── playground │ │ │ └── RunEmbedded.java │ └── org.beanshell │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── License.html │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── bsh │ │ ├── BSHAllocationExpression.class │ │ ├── BSHAmbiguousName.class │ │ ├── BSHArguments.class │ │ ├── BSHArrayDimensions.class │ │ ├── BSHArrayInitializer.class │ │ ├── BSHAssignment.class │ │ ├── BSHBinaryExpression.class │ │ ├── BSHBlock$NodeFilter.class │ │ ├── BSHBlock.class │ │ ├── BSHCastExpression.class │ │ ├── BSHClassDeclaration.class │ │ ├── BSHEnhancedForStatement.class │ │ ├── BSHForStatement.class │ │ ├── BSHFormalComment.class │ │ ├── BSHFormalParameter.class │ │ ├── BSHFormalParameters.class │ │ ├── BSHIfStatement.class │ │ ├── BSHImportDeclaration.class │ │ ├── BSHLiteral.class │ │ ├── BSHMethodDeclaration.class │ │ ├── BSHMethodInvocation.class │ │ ├── BSHPackageDeclaration.class │ │ ├── BSHPrimaryExpression.class │ │ ├── BSHPrimarySuffix.class │ │ ├── BSHPrimitiveType.class │ │ ├── BSHReturnStatement.class │ │ ├── BSHReturnType.class │ │ ├── BSHStatementExpressionList.class │ │ ├── BSHSwitchLabel.class │ │ ├── BSHSwitchStatement.class │ │ ├── BSHTernaryExpression.class │ │ ├── BSHThrowStatement.class │ │ ├── BSHTryStatement.class │ │ ├── BSHType.class │ │ ├── BSHTypedVariableDeclaration.class │ │ ├── BSHUnaryExpression.class │ │ ├── BSHVariableDeclarator.class │ │ ├── BSHWhileStatement.class │ │ ├── BlockNameSpace.class │ │ ├── BshClassManager$Listener.class │ │ ├── BshClassManager$SignatureKey.class │ │ ├── BshClassManager.class │ │ ├── BshIterator.class │ │ ├── BshMethod.class │ │ ├── CallStack.class │ │ ├── Capabilities$Unavailable.class │ │ ├── Capabilities.class │ │ ├── ClassGenerator.class │ │ ├── ClassGeneratorImpl$ClassNodeFilter.class │ │ ├── ClassGeneratorImpl.class │ │ ├── ClassGeneratorUtil$ConstructorArgs.class │ │ ├── ClassGeneratorUtil.class │ │ ├── ClassIdentifier.class │ │ ├── ClassPathException.class │ │ ├── CollectionManager$1.class │ │ ├── CollectionManager$BasicBshIterator.class │ │ ├── CollectionManager.class │ │ ├── CommandLineReader.class │ │ ├── Console.class │ │ ├── ConsoleInterface.class │ │ ├── DelayedEvalBshMethod.class │ │ ├── EvalError.class │ │ ├── ExternalNameSpace.class │ │ ├── Interpreter$1.class │ │ ├── Interpreter.class │ │ ├── InterpreterError.class │ │ ├── JJTParserState.class │ │ ├── JavaCharStream.class │ │ ├── LHS.class │ │ ├── Modifiers.class │ │ ├── Name.class │ │ ├── NameSource$Listener.class │ │ ├── NameSource.class │ │ ├── NameSpace.class │ │ ├── Node.class │ │ ├── ParseException.class │ │ ├── Parser$1.class │ │ ├── Parser$LookaheadSuccess.class │ │ ├── Parser.class │ │ ├── ParserConstants.class │ │ ├── ParserTokenManager.class │ │ ├── ParserTreeConstants.class │ │ ├── Primitive$Special.class │ │ ├── Primitive.class │ │ ├── Reflect.class │ │ ├── ReflectError.class │ │ ├── ReflectManager.class │ │ ├── Remote.class │ │ ├── ReturnControl.class │ │ ├── SimpleNode$1.class │ │ ├── SimpleNode.class │ │ ├── StringUtil.class │ │ ├── TargetError.class │ │ ├── This.class │ │ ├── Token.class │ │ ├── TokenMgrError.class │ │ ├── Types.class │ │ ├── UtilEvalError.class │ │ ├── UtilTargetError.class │ │ ├── Variable.class │ │ ├── XThis$Handler.class │ │ ├── XThis.class │ │ ├── classpath │ │ │ ├── BshClassLoader.class │ │ │ ├── BshClassPath$AmbiguousName.class │ │ │ ├── BshClassPath$ClassSource.class │ │ │ ├── BshClassPath$DirClassSource.class │ │ │ ├── BshClassPath$GeneratedClassSource.class │ │ │ ├── BshClassPath$JarClassSource.class │ │ │ ├── BshClassPath$MappingFeedback.class │ │ │ ├── BshClassPath$UnqualifiedNameTable.class │ │ │ ├── BshClassPath.class │ │ │ ├── ClassManagerImpl.class │ │ │ ├── ClassPathListener.class │ │ │ ├── DiscreteFilesClassLoader$ClassSourceMap.class │ │ │ └── DiscreteFilesClassLoader.class │ │ ├── collection │ │ │ ├── CollectionIterator.class │ │ │ └── CollectionManagerImpl.class │ │ ├── commands │ │ │ ├── addClassPath.bsh │ │ │ ├── bg.bsh │ │ │ ├── bind.bsh │ │ │ ├── browseClass.bsh │ │ │ ├── cat.bsh │ │ │ ├── cd.bsh │ │ │ ├── classBrowser.bsh │ │ │ ├── clear.bsh │ │ │ ├── cp.bsh │ │ │ ├── debug.bsh │ │ │ ├── desktop.bsh │ │ │ ├── dir.class │ │ │ ├── dirname.bsh │ │ │ ├── editor.bsh │ │ │ ├── error.bsh │ │ │ ├── eval.bsh │ │ │ ├── exec.bsh │ │ │ ├── exit.bsh │ │ │ ├── extend.bsh │ │ │ ├── fontMenu.bsh │ │ │ ├── frame.bsh │ │ │ ├── getBshPrompt.bsh │ │ │ ├── getClass.bsh │ │ │ ├── getClassPath.bsh │ │ │ ├── getResource.bsh │ │ │ ├── getSourceFileInfo.bsh │ │ │ ├── importCommands.bsh │ │ │ ├── importObject.bsh │ │ │ ├── javap.bsh │ │ │ ├── load.bsh │ │ │ ├── makeWorkspace.bsh │ │ │ ├── mv.bsh │ │ │ ├── object.bsh │ │ │ ├── pathToFile.bsh │ │ │ ├── print.bsh │ │ │ ├── printBanner.bsh │ │ │ ├── pwd.bsh │ │ │ ├── reloadClasses.bsh │ │ │ ├── rm.bsh │ │ │ ├── run.bsh │ │ │ ├── save.bsh │ │ │ ├── server.bsh │ │ │ ├── setAccessibility.bsh │ │ │ ├── setClassPath.bsh │ │ │ ├── setFont.bsh │ │ │ ├── setNameCompletion.bsh │ │ │ ├── setNameSpace.bsh │ │ │ ├── setStrictJava.bsh │ │ │ ├── show.bsh │ │ │ ├── source.bsh │ │ │ ├── sourceRelative.bsh │ │ │ ├── thinBorder.bsh │ │ │ ├── unset.bsh │ │ │ ├── which.bsh │ │ │ └── workspaceEditor.bsh │ │ ├── org │ │ │ └── objectweb │ │ │ │ └── asm │ │ │ │ ├── ByteVector.class │ │ │ │ ├── ClassVisitor.class │ │ │ │ ├── ClassWriter.class │ │ │ │ ├── CodeVisitor.class │ │ │ │ ├── CodeWriter.class │ │ │ │ ├── Constants.class │ │ │ │ ├── Edge.class │ │ │ │ ├── Item.class │ │ │ │ ├── Label.class │ │ │ │ └── Type.class │ │ ├── reflect │ │ │ └── ReflectManagerImpl.class │ │ ├── servlet │ │ │ ├── BshServlet.class │ │ │ ├── SimpleTemplate.class │ │ │ ├── error.template │ │ │ ├── getVersion.bsh │ │ │ ├── page.template │ │ │ └── result.template │ │ └── util │ │ │ ├── AWTConsole$1.class │ │ │ ├── AWTConsole.class │ │ │ ├── AWTDemoApplet.class │ │ │ ├── AWTRemoteApplet.class │ │ │ ├── BeanShellBSFEngine.class │ │ │ ├── BshCanvas.class │ │ │ ├── ClassBrowser$1.class │ │ │ ├── ClassBrowser$2.class │ │ │ ├── ClassBrowser$PackageTree.class │ │ │ ├── ClassBrowser.class │ │ │ ├── GUIConsoleInterface.class │ │ │ ├── Httpd.class │ │ │ ├── HttpdConnection.class │ │ │ ├── JConsole$1.class │ │ │ ├── JConsole$2.class │ │ │ ├── JConsole$3.class │ │ │ ├── JConsole$4.class │ │ │ ├── JConsole$5.class │ │ │ ├── JConsole$BlockingPipedInputStream.class │ │ │ ├── JConsole.class │ │ │ ├── JDemoApplet.class │ │ │ ├── JRemoteApplet.class │ │ │ ├── NameCompletion.class │ │ │ ├── NameCompletionTable.class │ │ │ ├── Sessiond.class │ │ │ ├── SessiondConnection.class │ │ │ ├── Util.class │ │ │ └── lib │ │ │ ├── awtconsole.html │ │ │ ├── eye.jpg │ │ │ ├── icon.gif │ │ │ ├── jconsole.html │ │ │ ├── remote.html │ │ │ ├── script.gif │ │ │ ├── small_bean_shell.gif │ │ │ ├── splash.gif │ │ │ └── workspace.gif │ │ └── build.properties ├── 02_basic_interpreter │ └── org.eclipse.ease.lang.beanshell │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── bin │ │ └── .gitignore │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ ├── plugin.xml │ │ └── src │ │ └── org │ │ └── eclipse │ │ └── ease │ │ └── lang │ │ └── beanshell │ │ ├── BeanShellEngine.java │ │ ├── BeanShellHelper.java │ │ └── IPluginConstants.java ├── 03_classloader │ └── org.eclipse.ease.lang.beanshell │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ ├── plugin.xml │ │ └── src │ │ └── org │ │ └── eclipse │ │ └── ease │ │ └── lang │ │ └── beanshell │ │ ├── BeanShellEngine.java │ │ ├── BeanShellHelper.java │ │ └── IPluginConstants.java ├── 04_modules_support │ └── org.eclipse.ease.lang.beanshell │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ ├── plugin.xml │ │ └── src │ │ └── org │ │ └── eclipse │ │ └── ease │ │ └── lang │ │ └── beanshell │ │ ├── BeanShellCodeFactory.java │ │ ├── BeanShellEngine.java │ │ ├── BeanShellHelper.java │ │ └── IPluginConstants.java └── 05_script_keywords │ └── org.eclipse.ease.lang.beanshell │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ └── MANIFEST.MF │ ├── build.properties │ ├── epl-v10.html │ ├── license.html │ ├── plugin.xml │ └── src │ └── org │ └── eclipse │ └── ease │ └── lang │ └── beanshell │ ├── BeanShellCodeFactory.java │ ├── BeanShellCodeParser.java │ ├── BeanShellEngine.java │ ├── BeanShellHelper.java │ └── IPluginConstants.java ├── form_editor_with_xml_source_view └── com.codeandme.multiparteditor │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ └── MANIFEST.MF │ ├── build.properties │ ├── epl-v10.html │ ├── license.html │ ├── plugin.xml │ └── src │ └── com │ └── codeandme │ └── multiparteditor │ ├── FirstForm.java │ └── SampleEditor.java ├── generic_drag_and_drop └── com.codeandme.draganddrop │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ └── MANIFEST.MF │ ├── build.properties │ ├── epl-v10.html │ ├── license.html │ ├── plugin.xml │ └── src │ └── com │ └── codeandme │ └── draganddrop │ ├── TextDropActionDelegate.java │ └── views │ ├── DragSourceView.java │ └── DropTargetView.java ├── headless_application └── com.codeandme.headless │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── Headless.product │ ├── META-INF │ └── MANIFEST.MF │ ├── build.properties │ ├── plugin.xml │ └── src │ └── com │ └── codeandme │ └── headless │ └── Application.java ├── hiding_ui_elements_in_rcp └── com.codeandme.hideui │ ├── .classpath │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ └── MANIFEST.MF │ ├── build.properties │ ├── epl-v10.html │ ├── license.html │ └── plugin.xml ├── jenkins ├── 01_empty_plugin │ └── builder.hello │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── resources │ │ └── index.jelly ├── 02_builder_plugin │ └── builder.hello │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── codeandme │ │ │ └── jenkins │ │ │ └── builder │ │ │ └── HelloBuilder.java │ │ └── resources │ │ ├── com │ │ └── codeandme │ │ │ └── jenkins │ │ │ └── builder │ │ │ └── HelloBuilder │ │ │ ├── config.jelly │ │ │ ├── help-failBuild.html │ │ │ └── help.html │ │ └── index.jelly ├── 03_text_input │ └── builder.hello │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── codeandme │ │ │ └── jenkins │ │ │ └── builder │ │ │ └── HelloBuilder.java │ │ └── resources │ │ ├── com │ │ └── codeandme │ │ │ └── jenkins │ │ │ └── builder │ │ │ └── HelloBuilder │ │ │ ├── config.jelly │ │ │ ├── help-buildMessage.html │ │ │ ├── help-failBuild.html │ │ │ └── help.html │ │ └── index.jelly ├── 04_unit_tests │ └── builder.hello │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── license.html │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── codeandme │ │ │ │ └── jenkins │ │ │ │ └── builder │ │ │ │ └── HelloBuilder.java │ │ └── resources │ │ │ ├── com │ │ │ └── codeandme │ │ │ │ └── jenkins │ │ │ │ └── builder │ │ │ │ └── HelloBuilder │ │ │ │ ├── config.jelly │ │ │ │ ├── help-buildMessage.html │ │ │ │ ├── help-failBuild.html │ │ │ │ └── help.html │ │ │ └── index.jelly │ │ └── test │ │ └── java │ │ └── com │ │ └── codeandme │ │ └── jenkins │ │ └── builder │ │ └── HelloBuilderTest.java ├── 05_combo_input │ └── builder.hello │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── license.html │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── codeandme │ │ │ │ └── jenkins │ │ │ │ └── builder │ │ │ │ └── HelloBuilder.java │ │ └── resources │ │ │ ├── com │ │ │ └── codeandme │ │ │ │ └── jenkins │ │ │ │ └── builder │ │ │ │ └── HelloBuilder │ │ │ │ ├── config.jelly │ │ │ │ ├── help-buildDelay.html │ │ │ │ ├── help-buildMessage.html │ │ │ │ ├── help-failBuild.html │ │ │ │ └── help.html │ │ │ └── index.jelly │ │ └── test │ │ └── java │ │ └── com │ │ └── codeandme │ │ └── jenkins │ │ └── builder │ │ └── HelloBuilderTest.java ├── 06_advanced_configuration │ └── builder.hello │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── license.html │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── codeandme │ │ │ │ └── jenkins │ │ │ │ └── builder │ │ │ │ └── HelloBuilder.java │ │ └── resources │ │ │ ├── com │ │ │ └── codeandme │ │ │ │ └── jenkins │ │ │ │ └── builder │ │ │ │ └── HelloBuilder │ │ │ │ ├── config.jelly │ │ │ │ ├── help-buildDelay.html │ │ │ │ ├── help-buildMessage.html │ │ │ │ ├── help-failBuild.html │ │ │ │ └── help.html │ │ │ └── index.jelly │ │ └── test │ │ └── java │ │ └── com │ │ └── codeandme │ │ └── jenkins │ │ └── builder │ │ └── HelloBuilderTest.java └── 07_pipeline │ └── builder.hello │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── license.html │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── codeandme │ │ │ └── jenkins │ │ │ └── builder │ │ │ └── HelloBuilder.java │ └── resources │ │ ├── com │ │ └── codeandme │ │ │ └── jenkins │ │ │ └── builder │ │ │ └── HelloBuilder │ │ │ ├── config.jelly │ │ │ ├── help-buildDelay.html │ │ │ ├── help-buildMessage.html │ │ │ ├── help-failBuild.html │ │ │ └── help.html │ │ └── index.jelly │ └── test │ └── java │ └── com │ └── codeandme │ └── jenkins │ └── builder │ └── HelloBuilderTest.java ├── jfreechart └── com.codeandme.jfreechart │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ └── MANIFEST.MF │ ├── build.properties │ ├── epl-v10.html │ ├── license.html │ ├── plugin.xml │ └── src │ └── com │ └── codeandme │ └── jfreechart │ └── DemoView.java ├── jni_made_easy ├── JNI_Library_linux │ ├── .cproject │ ├── .gitignore │ ├── .project │ ├── epl-v10.html │ ├── license.html │ └── src │ │ ├── com_codeandme_jni_JNITest.cpp │ │ └── com_codeandme_jni_JNITest.h ├── JNI_Library_windows │ ├── .cproject │ ├── .gitignore │ ├── .project │ ├── .settings │ │ └── org.eclipse.cdt.managedbuilder.core.prefs │ ├── epl-v10.html │ ├── license.html │ └── src │ │ ├── com_codeandme_jni_JNITest.cpp │ │ └── com_codeandme_jni_JNITest.h └── com.codeandme.jni │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── epl-v10.html │ ├── license.html │ ├── resources │ ├── libJNI_Library_linux.so │ └── libJNI_Library_windows.dll │ └── src │ └── com │ └── codeandme │ └── jni │ └── JNITest.java ├── minimal_application ├── com.codeandme.eclipse.minimal.feature │ ├── .project │ ├── build.properties │ ├── epl-v10.html │ ├── feature.xml │ └── license.html └── com.codeandme.eclipse.minimal │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ └── MANIFEST.MF │ ├── Minimal.product │ ├── build.properties │ ├── epl-v10.html │ ├── license.html │ └── plugin.xml ├── oomph ├── 03_first_project_setup │ └── com.codeandme.oomph │ │ ├── .project │ │ └── CodeAndMe.setup ├── 04_p2_install_tasks │ └── com.codeandme.oomph │ │ ├── .project │ │ ├── CodeAndMe.setup │ │ ├── epl-v10.html │ │ └── license.html ├── 05_git_checkout │ └── com.codeandme.oomph │ │ ├── .project │ │ ├── CodeAndMe.setup │ │ ├── epl-v10.html │ │ └── license.html └── 06_targlets │ └── com.codeandme.oomph │ ├── .project │ ├── CodeAndMe.setup │ ├── epl-v10.html │ └── license.html ├── rest_client ├── com.codeandme.restclient.resteasy │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── license.html │ └── src │ │ └── com │ │ └── codeandme │ │ └── restclient │ │ └── resteasy │ │ ├── IStoreService.java │ │ ├── Order.java │ │ └── StoreServiceFactory.java └── org.jboss.resteasy │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ └── MANIFEST.MF │ ├── build.properties │ └── readme.txt ├── reusing_xml_source_editor └── com.codeandme.xmleditor │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ └── MANIFEST.MF │ ├── build.properties │ ├── epl-v10.html │ ├── license.html │ ├── plugin.xml │ └── src │ └── com │ └── codeandme │ └── xmleditor │ └── ExampleEditor.java ├── search_provider └── com.codeandme.searchprovider │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ └── MANIFEST.MF │ ├── build.properties │ ├── epl-v10.html │ ├── license.html │ ├── plugin.xml │ └── src │ └── com │ └── codeandme │ └── searchprovider │ ├── FileSearchQuery.java │ ├── FileSearchResult.java │ ├── FileSearchResultEvent.java │ └── ui │ ├── FileSearchPage.java │ └── SearchResultPage.java ├── tools └── com.codeandme.tools │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ └── MANIFEST.MF │ ├── build.properties │ ├── epl-v10.html │ ├── license.html │ └── src │ └── com │ └── codeandme │ └── tools │ └── ui │ ├── AbstractToggleHandler.java │ ├── HTMLTableExporter.java │ └── TableExporter.java ├── tracing └── com.codeandme.tracing │ ├── .classpath │ ├── .gitignore │ ├── .options │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ └── MANIFEST.MF │ ├── build.properties │ ├── epl-v10.html │ ├── license.html │ └── src │ └── com │ └── codeandme │ └── tracing │ ├── Activator.java │ └── MyClass.java ├── tycho ├── 00_initial_setup │ ├── com.codeandme.tycho.plugin.feature │ │ ├── .project │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── feature.xml │ │ └── license.html │ ├── com.codeandme.tycho.plugin │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ ├── plugin.xml │ │ └── src │ │ │ └── com │ │ │ └── codeandme │ │ │ └── tycho │ │ │ └── plugin │ │ │ ├── ExampleView.java │ │ │ └── OpenViewCommand.java │ ├── com.codeandme.tycho.product.feature │ │ ├── .project │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── feature.xml │ │ └── license.html │ └── com.codeandme.tycho.product │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── Tycho.product │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── plugin.xml ├── 01_build_plugins │ ├── com.codeandme.tycho.plugin.feature │ │ ├── .project │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── feature.xml │ │ └── license.html │ ├── com.codeandme.tycho.plugin │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── bin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── tycho │ │ │ │ └── plugin │ │ │ │ ├── ExampleView.class │ │ │ │ └── OpenViewCommand.class │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── com │ │ │ └── codeandme │ │ │ └── tycho │ │ │ └── plugin │ │ │ ├── ExampleView.java │ │ │ └── OpenViewCommand.java │ ├── com.codeandme.tycho.product.feature │ │ ├── .project │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── feature.xml │ │ └── license.html │ └── com.codeandme.tycho.product │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── Tycho.product │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── plugin.xml ├── 03_global_build_project │ ├── com.codeandme.tycho.plugin.feature │ │ ├── .project │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── feature.xml │ │ └── license.html │ ├── com.codeandme.tycho.plugin │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── com │ │ │ └── codeandme │ │ │ └── tycho │ │ │ └── plugin │ │ │ ├── ExampleView.java │ │ │ └── OpenViewCommand.java │ ├── com.codeandme.tycho.product.feature │ │ ├── .project │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── feature.xml │ │ └── license.html │ ├── com.codeandme.tycho.product │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── Tycho.product │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── plugin.xml │ └── com.codeandme.tycho.releng │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.m2e.core.prefs │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── pom.xml ├── 04_build_features │ ├── com.codeandme.tycho.plugin.feature │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── feature.xml │ │ ├── license.html │ │ └── pom.xml │ ├── com.codeandme.tycho.plugin │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── com │ │ │ └── codeandme │ │ │ └── tycho │ │ │ └── plugin │ │ │ ├── ExampleView.java │ │ │ └── OpenViewCommand.java │ ├── com.codeandme.tycho.product.feature │ │ ├── .project │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── feature.xml │ │ └── license.html │ ├── com.codeandme.tycho.product │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── Tycho.product │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── plugin.xml │ └── com.codeandme.tycho.releng │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.m2e.core.prefs │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── pom.xml ├── 05_build_update_sites │ ├── com.codeandme.tycho.plugin.feature │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── feature.xml │ │ ├── license.html │ │ └── pom.xml │ ├── com.codeandme.tycho.plugin │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── com │ │ │ └── codeandme │ │ │ └── tycho │ │ │ └── plugin │ │ │ ├── ExampleView.java │ │ │ └── OpenViewCommand.java │ ├── com.codeandme.tycho.product.feature │ │ ├── .project │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── feature.xml │ │ └── license.html │ ├── com.codeandme.tycho.product │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── Tycho.product │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── plugin.xml │ ├── com.codeandme.tycho.releng.p2 │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── category.xml │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── pom.xml │ └── com.codeandme.tycho.releng │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.m2e.core.prefs │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── pom.xml ├── 06_build_products │ ├── com.codeandme.tycho.plugin.feature │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── feature.xml │ │ ├── license.html │ │ └── pom.xml │ ├── com.codeandme.tycho.plugin │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── com │ │ │ └── codeandme │ │ │ └── tycho │ │ │ └── plugin │ │ │ ├── ExampleView.java │ │ │ └── OpenViewCommand.java │ ├── com.codeandme.tycho.product.feature │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── feature.xml │ │ ├── license.html │ │ └── pom.xml │ ├── com.codeandme.tycho.product │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ ├── plugin.xml │ │ └── pom.xml │ ├── com.codeandme.tycho.releng.p2 │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── category.xml │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── pom.xml │ ├── com.codeandme.tycho.releng.product │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── Tycho.p2.inf │ │ ├── Tycho.product │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── pom.xml │ └── com.codeandme.tycho.releng │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.m2e.core.prefs │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── pom.xml ├── 07_unit_tests │ ├── com.codeandme.tycho.plugin.feature │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── feature.xml │ │ ├── license.html │ │ └── pom.xml │ ├── com.codeandme.tycho.plugin.test │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── com │ │ │ └── codeandme │ │ │ └── tycho │ │ │ └── plugin │ │ │ └── ExampleViewTest.java │ ├── com.codeandme.tycho.plugin │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── com │ │ │ └── codeandme │ │ │ └── tycho │ │ │ └── plugin │ │ │ ├── ExampleView.java │ │ │ └── OpenViewCommand.java │ ├── com.codeandme.tycho.product.feature │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── feature.xml │ │ ├── license.html │ │ └── pom.xml │ ├── com.codeandme.tycho.product │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ ├── plugin.xml │ │ └── pom.xml │ ├── com.codeandme.tycho.releng.p2 │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── category.xml │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── pom.xml │ ├── com.codeandme.tycho.releng.product │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── Tycho.p2.inf │ │ ├── Tycho.product │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── pom.xml │ └── com.codeandme.tycho.releng │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.m2e.core.prefs │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── pom.xml ├── 08_target_platform │ ├── com.codeandme.tycho.plugin.feature │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── feature.xml │ │ ├── license.html │ │ └── pom.xml │ ├── com.codeandme.tycho.plugin.test │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── com │ │ │ └── codeandme │ │ │ └── tycho │ │ │ └── plugin │ │ │ └── ExampleViewTest.java │ ├── com.codeandme.tycho.plugin │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── com │ │ │ └── codeandme │ │ │ └── tycho │ │ │ └── plugin │ │ │ ├── ExampleView.java │ │ │ └── OpenViewCommand.java │ ├── com.codeandme.tycho.product.feature │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── feature.xml │ │ ├── license.html │ │ └── pom.xml │ ├── com.codeandme.tycho.product │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ ├── plugin.xml │ │ └── pom.xml │ ├── com.codeandme.tycho.releng.p2 │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── category.xml │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── pom.xml │ ├── com.codeandme.tycho.releng.product │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── Tycho.p2.inf │ │ ├── Tycho.product │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── pom.xml │ ├── com.codeandme.tycho.releng.targetplatform │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── com.codeandme.tycho.releng.targetplatform.target │ │ ├── com.codeandme.tycho.releng.targetplatform.tpd │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── pom.xml │ └── com.codeandme.tycho.releng │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.m2e.core.prefs │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── pom.xml ├── 09_update_versions │ ├── com.codeandme.tycho.plugin.feature │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── feature.xml │ │ ├── license.html │ │ └── pom.xml │ ├── com.codeandme.tycho.plugin.test │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── com │ │ │ └── codeandme │ │ │ └── tycho │ │ │ └── plugin │ │ │ └── ExampleViewTest.java │ ├── com.codeandme.tycho.plugin │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── com │ │ │ └── codeandme │ │ │ └── tycho │ │ │ └── plugin │ │ │ ├── ExampleView.java │ │ │ └── OpenViewCommand.java │ ├── com.codeandme.tycho.product.feature │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── feature.xml │ │ ├── license.html │ │ └── pom.xml │ ├── com.codeandme.tycho.product │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ ├── plugin.xml │ │ └── pom.xml │ ├── com.codeandme.tycho.releng.p2 │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── category.xml │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── pom.xml │ ├── com.codeandme.tycho.releng.product │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── Tycho.p2.inf │ │ ├── Tycho.product │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── pom.xml │ ├── com.codeandme.tycho.releng.targetplatform │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── com.codeandme.tycho.releng.targetplatform.target │ │ ├── com.codeandme.tycho.releng.targetplatform.tpd │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── pom.xml │ └── com.codeandme.tycho.releng │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.m2e.core.prefs │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── pom.xml ├── 10_code_signing │ ├── com.codeandme.tycho.plugin.feature │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── feature.xml │ │ ├── license.html │ │ └── pom.xml │ ├── com.codeandme.tycho.plugin.test │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── com │ │ │ └── codeandme │ │ │ └── tycho │ │ │ └── plugin │ │ │ └── ExampleViewTest.java │ ├── com.codeandme.tycho.plugin │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── com │ │ │ └── codeandme │ │ │ └── tycho │ │ │ └── plugin │ │ │ ├── ExampleView.java │ │ │ └── OpenViewCommand.java │ ├── com.codeandme.tycho.product.feature │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── feature.xml │ │ ├── license.html │ │ └── pom.xml │ ├── com.codeandme.tycho.product │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ ├── plugin.xml │ │ └── pom.xml │ ├── com.codeandme.tycho.releng.p2 │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── category.xml │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── pom.xml │ ├── com.codeandme.tycho.releng.product │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── Tycho.p2.inf │ │ ├── Tycho.product │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── pom.xml │ ├── com.codeandme.tycho.releng.targetplatform │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── com.codeandme.tycho.releng.targetplatform.target │ │ ├── com.codeandme.tycho.releng.targetplatform.tpd │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── pom.xml │ └── com.codeandme.tycho.releng │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.m2e.core.prefs │ │ ├── SampleCA.pfx │ │ ├── blog.keystore │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── pom.xml ├── 11_root_level_features │ ├── com.codeandme.tycho.plugin.feature │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── feature.xml │ │ ├── license.html │ │ └── pom.xml │ ├── com.codeandme.tycho.plugin.test │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── com │ │ │ └── codeandme │ │ │ └── tycho │ │ │ └── plugin │ │ │ └── ExampleViewTest.java │ ├── com.codeandme.tycho.plugin │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── com │ │ │ └── codeandme │ │ │ └── tycho │ │ │ └── plugin │ │ │ ├── ExampleView.java │ │ │ └── OpenViewCommand.java │ ├── com.codeandme.tycho.product.feature │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── feature.xml │ │ ├── license.html │ │ └── pom.xml │ ├── com.codeandme.tycho.product │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ ├── plugin.xml │ │ └── pom.xml │ ├── com.codeandme.tycho.releng.p2 │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── category.xml │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── pom.xml │ ├── com.codeandme.tycho.releng.product │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── Tycho.p2.inf │ │ ├── Tycho.product │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── pom.xml │ ├── com.codeandme.tycho.releng.targetplatform │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── com.codeandme.tycho.releng.targetplatform.target │ │ ├── com.codeandme.tycho.releng.targetplatform.tpd │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── pom.xml │ └── com.codeandme.tycho.releng │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.m2e.core.prefs │ │ ├── SampleCA.pfx │ │ ├── blog.keystore │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── pom.xml ├── 12_build_source_features │ ├── com.codeandme.tycho.plugin.feature │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── feature.xml │ │ ├── license.html │ │ └── pom.xml │ ├── com.codeandme.tycho.plugin.test │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── com │ │ │ └── codeandme │ │ │ └── tycho │ │ │ └── plugin │ │ │ └── ExampleViewTest.java │ ├── com.codeandme.tycho.plugin │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── com │ │ │ └── codeandme │ │ │ └── tycho │ │ │ └── plugin │ │ │ ├── ExampleView.java │ │ │ └── OpenViewCommand.java │ ├── com.codeandme.tycho.product.feature │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── feature.xml │ │ ├── license.html │ │ └── pom.xml │ ├── com.codeandme.tycho.product │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── epl-v10.html │ │ ├── license.html │ │ ├── plugin.xml │ │ └── pom.xml │ ├── com.codeandme.tycho.releng.p2.source │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── category.xml │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── pom.xml │ ├── com.codeandme.tycho.releng.p2 │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── category.xml │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── pom.xml │ ├── com.codeandme.tycho.releng.product │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── Tycho.p2.inf │ │ ├── Tycho.product │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── pom.xml │ ├── com.codeandme.tycho.releng.targetplatform │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── com.codeandme.tycho.releng.targetplatform.target │ │ ├── com.codeandme.tycho.releng.targetplatform.tpd │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── pom.xml │ └── com.codeandme.tycho.releng │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.m2e.core.prefs │ │ ├── SampleCA.pfx │ │ ├── blog.keystore │ │ ├── epl-v10.html │ │ ├── license.html │ │ └── pom.xml └── 13_generate_javadoc │ ├── com.codeandme.tycho.help │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── epl-v10.html │ ├── help │ │ ├── main.xml │ │ └── reference.xml │ ├── license.html │ ├── plugin.xml │ └── pom.xml │ ├── com.codeandme.tycho.plugin.feature │ ├── .gitignore │ ├── .project │ ├── .settings │ │ └── org.eclipse.m2e.core.prefs │ ├── build.properties │ ├── epl-v10.html │ ├── feature.xml │ ├── license.html │ └── pom.xml │ ├── com.codeandme.tycho.plugin.test │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── pom.xml │ └── src │ │ └── com │ │ └── codeandme │ │ └── tycho │ │ └── plugin │ │ └── ExampleViewTest.java │ ├── com.codeandme.tycho.plugin │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── epl-v10.html │ ├── license.html │ ├── plugin.xml │ ├── pom.xml │ └── src │ │ └── com │ │ └── codeandme │ │ └── tycho │ │ └── plugin │ │ ├── ExampleView.java │ │ └── OpenViewCommand.java │ ├── com.codeandme.tycho.product.feature │ ├── .gitignore │ ├── .project │ ├── .settings │ │ └── org.eclipse.m2e.core.prefs │ ├── build.properties │ ├── epl-v10.html │ ├── feature.xml │ ├── license.html │ └── pom.xml │ ├── com.codeandme.tycho.product │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── epl-v10.html │ ├── license.html │ ├── plugin.xml │ └── pom.xml │ ├── com.codeandme.tycho.releng.p2.source │ ├── .gitignore │ ├── .project │ ├── .settings │ │ └── org.eclipse.m2e.core.prefs │ ├── category.xml │ ├── epl-v10.html │ ├── license.html │ └── pom.xml │ ├── com.codeandme.tycho.releng.p2 │ ├── .gitignore │ ├── .project │ ├── .settings │ │ └── org.eclipse.m2e.core.prefs │ ├── category.xml │ ├── epl-v10.html │ ├── license.html │ └── pom.xml │ ├── com.codeandme.tycho.releng.product │ ├── .gitignore │ ├── .project │ ├── .settings │ │ └── org.eclipse.m2e.core.prefs │ ├── Tycho.p2.inf │ ├── Tycho.product │ ├── epl-v10.html │ ├── license.html │ └── pom.xml │ ├── com.codeandme.tycho.releng.targetplatform │ ├── .project │ ├── .settings │ │ └── org.eclipse.m2e.core.prefs │ ├── com.codeandme.tycho.releng.targetplatform.target │ ├── com.codeandme.tycho.releng.targetplatform.tpd │ ├── epl-v10.html │ ├── license.html │ └── pom.xml │ └── com.codeandme.tycho.releng │ ├── .project │ ├── .settings │ └── org.eclipse.m2e.core.prefs │ ├── SampleCA.pfx │ ├── blog.keystore │ ├── epl-v10.html │ ├── license.html │ └── pom.xml ├── ui └── TableViewer DnD Sorting │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ └── MANIFEST.MF │ ├── build.properties │ ├── epl-v10.html │ ├── license.html │ └── src │ └── com │ └── codeandme │ └── tableviewer │ └── dnd │ └── sorting │ ├── DataModel.java │ ├── DnDSortingSupport.java │ └── TableViewerDnD.java └── welcome_page └── com.codeandme.welcome ├── .classpath ├── .gitignore ├── .project ├── .settings └── org.eclipse.jdt.core.prefs ├── Example.product ├── META-INF └── MANIFEST.MF ├── build.properties ├── epl-v10.html ├── images └── logo.png ├── intro ├── css │ ├── graphics │ │ ├── sample.gif │ │ └── sample_hov.gif │ └── sample.css └── sample.xml ├── license.html ├── plugin.xml ├── plugin_customization.ini └── src └── com └── codeandme └── welcome └── commands └── ActivateWelcome.java /Code & Me Blog/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | Code & Me Blog 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Code & Me Blog/RESTEasy_client.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/RESTEasy_client.zip -------------------------------------------------------------------------------- /Code & Me Blog/TableViewer_DnD_Sorting.psf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code & Me Blog/TableViewer_DnD_Sorting.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/TableViewer_DnD_Sorting.zip -------------------------------------------------------------------------------- /Code & Me Blog/coreexpressions.psf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code & Me Blog/coreexpressions.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/coreexpressions.zip -------------------------------------------------------------------------------- /Code & Me Blog/coreexpressions_samples.psf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code & Me Blog/coreexpressions_samples.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/coreexpressions_samples.zip -------------------------------------------------------------------------------- /Code & Me Blog/custom_builder.psf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code & Me Blog/custom_builder.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/custom_builder.zip -------------------------------------------------------------------------------- /Code & Me Blog/custom_service.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/custom_service.zip -------------------------------------------------------------------------------- /Code & Me Blog/debugger_01_interpreter.psf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code & Me Blog/debugger_01_interpreter.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/debugger_01_interpreter.zip -------------------------------------------------------------------------------- /Code & Me Blog/debugger_02_launching.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/debugger_02_launching.zip -------------------------------------------------------------------------------- /Code & Me Blog/debugger_03_simple_debugger.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/debugger_03_simple_debugger.zip -------------------------------------------------------------------------------- /Code & Me Blog/debugger_04_stepping.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/debugger_04_stepping.zip -------------------------------------------------------------------------------- /Code & Me Blog/debugger_05_editor_breakpoints.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/debugger_05_editor_breakpoints.zip -------------------------------------------------------------------------------- /Code & Me Blog/debugger_06_debugger_breakpoints.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/debugger_06_debugger_breakpoints.zip -------------------------------------------------------------------------------- /Code & Me Blog/debugger_07_source_lookup.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/debugger_07_source_lookup.zip -------------------------------------------------------------------------------- /Code & Me Blog/debugger_08_run_to_line.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/debugger_08_run_to_line.zip -------------------------------------------------------------------------------- /Code & Me Blog/debugger_09_variables.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/debugger_09_variables.zip -------------------------------------------------------------------------------- /Code & Me Blog/debugger_10_variable_editing.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/debugger_10_variable_editing.zip -------------------------------------------------------------------------------- /Code & Me Blog/debugger_11_watch_expressions.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/debugger_11_watch_expressions.zip -------------------------------------------------------------------------------- /Code & Me Blog/debugger_12_memory.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/debugger_12_memory.zip -------------------------------------------------------------------------------- /Code & Me Blog/ease_interpreter_01_beanshell.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/ease_interpreter_01_beanshell.zip -------------------------------------------------------------------------------- /Code & Me Blog/ease_interpreter_02_basic_interpreter.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/ease_interpreter_02_basic_interpreter.zip -------------------------------------------------------------------------------- /Code & Me Blog/ease_interpreter_03_classloader.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/ease_interpreter_03_classloader.zip -------------------------------------------------------------------------------- /Code & Me Blog/ease_interpreter_04_modules_support.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/ease_interpreter_04_modules_support.zip -------------------------------------------------------------------------------- /Code & Me Blog/ease_interpreter_05_script_keywords.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/ease_interpreter_05_script_keywords.zip -------------------------------------------------------------------------------- /Code & Me Blog/form_editor_with_xml_source_view.psf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code & Me Blog/form_editor_with_xml_source_view.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/form_editor_with_xml_source_view.zip -------------------------------------------------------------------------------- /Code & Me Blog/generic_drag_and_drop.psf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code & Me Blog/generic_drag_and_drop.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/generic_drag_and_drop.zip -------------------------------------------------------------------------------- /Code & Me Blog/headless_application.psf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code & Me Blog/headless_application.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/headless_application.zip -------------------------------------------------------------------------------- /Code & Me Blog/hiding_ui_elements_in_rcp.psf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code & Me Blog/hiding_ui_elements_in_rcp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/hiding_ui_elements_in_rcp.zip -------------------------------------------------------------------------------- /Code & Me Blog/jenkins_01_empty_plugin.psf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code & Me Blog/jenkins_01_empty_plugin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/jenkins_01_empty_plugin.zip -------------------------------------------------------------------------------- /Code & Me Blog/jenkins_02_builder_plugin.psf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code & Me Blog/jenkins_02_builder_plugin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/jenkins_02_builder_plugin.zip -------------------------------------------------------------------------------- /Code & Me Blog/jenkins_03_text_input.psf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code & Me Blog/jenkins_03_text_input.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/jenkins_03_text_input.zip -------------------------------------------------------------------------------- /Code & Me Blog/jenkins_04_unit_test.psf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code & Me Blog/jenkins_04_unit_test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/jenkins_04_unit_test.zip -------------------------------------------------------------------------------- /Code & Me Blog/jenkins_05_combo_input.psf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code & Me Blog/jenkins_05_combo_input.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/jenkins_05_combo_input.zip -------------------------------------------------------------------------------- /Code & Me Blog/jenkins_06_advanced_configuration.psf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code & Me Blog/jenkins_06_advanced_configuration.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/jenkins_06_advanced_configuration.zip -------------------------------------------------------------------------------- /Code & Me Blog/jenkins_07_pipeline.psf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code & Me Blog/jenkins_07_pipeline.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/jenkins_07_pipeline.zip -------------------------------------------------------------------------------- /Code & Me Blog/jfreechart.psf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code & Me Blog/jfreechart.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/jfreechart.zip -------------------------------------------------------------------------------- /Code & Me Blog/jni_made_easy.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/jni_made_easy.zip -------------------------------------------------------------------------------- /Code & Me Blog/minimal_application.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/minimal_application.zip -------------------------------------------------------------------------------- /Code & Me Blog/oomph_03_first_project_setup.psf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code & Me Blog/oomph_03_first_project_setup.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/oomph_03_first_project_setup.zip -------------------------------------------------------------------------------- /Code & Me Blog/oomph_04_p2_install_tasks.psf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code & Me Blog/oomph_04_p2_install_tasks.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/oomph_04_p2_install_tasks.zip -------------------------------------------------------------------------------- /Code & Me Blog/oomph_05_git_checkout.psf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code & Me Blog/oomph_05_git_checkout.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/oomph_05_git_checkout.zip -------------------------------------------------------------------------------- /Code & Me Blog/oomph_06_targlets.psf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code & Me Blog/oomph_06_targlets.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/oomph_06_targlets.zip -------------------------------------------------------------------------------- /Code & Me Blog/reusing_xml_source_editor.psf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code & Me Blog/reusing_xml_source_editor.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/reusing_xml_source_editor.zip -------------------------------------------------------------------------------- /Code & Me Blog/search_provider.psf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code & Me Blog/search_provider.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/search_provider.zip -------------------------------------------------------------------------------- /Code & Me Blog/tracing.psf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Code & Me Blog/tracing.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/tracing.zip -------------------------------------------------------------------------------- /Code & Me Blog/tycho_00_initial_setup.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/tycho_00_initial_setup.zip -------------------------------------------------------------------------------- /Code & Me Blog/tycho_01_build_plugins.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/tycho_01_build_plugins.zip -------------------------------------------------------------------------------- /Code & Me Blog/tycho_03_global_build_project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/tycho_03_global_build_project.zip -------------------------------------------------------------------------------- /Code & Me Blog/tycho_04_build_features.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/tycho_04_build_features.zip -------------------------------------------------------------------------------- /Code & Me Blog/tycho_05_build_update_sites.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/tycho_05_build_update_sites.zip -------------------------------------------------------------------------------- /Code & Me Blog/tycho_06_build_products.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/tycho_06_build_products.zip -------------------------------------------------------------------------------- /Code & Me Blog/tycho_07_unit_tests.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/tycho_07_unit_tests.zip -------------------------------------------------------------------------------- /Code & Me Blog/tycho_08_target_platform.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/tycho_08_target_platform.zip -------------------------------------------------------------------------------- /Code & Me Blog/tycho_09_update_versions.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/tycho_09_update_versions.zip -------------------------------------------------------------------------------- /Code & Me Blog/tycho_10_code_signing.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/tycho_10_code_signing.zip -------------------------------------------------------------------------------- /Code & Me Blog/tycho_11_root_level_features.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/tycho_11_root_level_features.zip -------------------------------------------------------------------------------- /Code & Me Blog/tycho_12_build_source_features.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/tycho_12_build_source_features.zip -------------------------------------------------------------------------------- /Code & Me Blog/tycho_13_generate_javadoc.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/Code & Me Blog/tycho_13_generate_javadoc.zip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # codeandme 2 | Example code for codeandme.blogspot.com 3 | -------------------------------------------------------------------------------- /coreexpressions/com.codeandme.coreexpressions.samples/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /coreexpressions/com.codeandme.coreexpressions.samples/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /coreexpressions/com.codeandme.coreexpressions/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /coreexpressions/com.codeandme.coreexpressions/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /custom_builder/com.codeandme.custombuilder/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /custom_builder/com.codeandme.custombuilder/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /custom_installation_step/com.codeandme.touchpoint.action.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /custom_installation_step/com.codeandme.touchpoint.action/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /custom_installation_step/com.codeandme.touchpoint.action/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /custom_installation_step/com.codeandme.touchpoint.payload.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml,\ 2 | p2.inf 3 | -------------------------------------------------------------------------------- /custom_installation_step/com.codeandme.touchpoint.payload/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /custom_installation_step/com.codeandme.touchpoint.payload/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Custom Installation Payload 4 | Bundle-SymbolicName: com.codeandme.touchpoint.payload 5 | Bundle-Version: 1.0.0.qualifier 6 | Bundle-Vendor: codeandme.blogspot.com 7 | Bundle-RequiredExecutionEnvironment: JavaSE-1.6 8 | -------------------------------------------------------------------------------- /custom_installation_step/com.codeandme.touchpoint.payload/META-INF/p2.inf: -------------------------------------------------------------------------------- 1 | metaRequirements.0.namespace=org.eclipse.equinox.p2.iu 2 | metaRequirements.0.name=com.codeandme.touchpoint.action 3 | metaRequirements.0.range=[1,2) 4 | 5 | instructions.configure = com.codeandme.touchpoint.action.MyAction(key1:value1, key2:value2); -------------------------------------------------------------------------------- /custom_installation_step/com.codeandme.touchpoint.payload/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /custom_installation_step/com.codeandme.touchpoint.payload/src/com/codeandme/touchpoint/payload/Dummy.java: -------------------------------------------------------------------------------- 1 | package com.codeandme.touchpoint.payload; 2 | 3 | public class Dummy { 4 | } 5 | -------------------------------------------------------------------------------- /custom_service/com.codeandme.customservice.consumer/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /custom_service/com.codeandme.customservice.consumer/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /custom_service/com.codeandme.customservice/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /custom_service/com.codeandme.customservice/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /debugger/01_interpreter/com.codeandme.debugger.textinterpreter/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /debugger/01_interpreter/com.codeandme.debugger.textinterpreter/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /debugger/02_launching/com.codeandme.debugger.textinterpreter.ui/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /debugger/02_launching/com.codeandme.debugger.textinterpreter.ui/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml,\ 6 | images/ 7 | -------------------------------------------------------------------------------- /debugger/02_launching/com.codeandme.debugger.textinterpreter.ui/images/launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/debugger/02_launching/com.codeandme.debugger.textinterpreter.ui/images/launcher.png -------------------------------------------------------------------------------- /debugger/03_simple_debugger/com.codeandme.debugger.textinterpreter.debugger/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /debugger/03_simple_debugger/com.codeandme.debugger.textinterpreter.debugger/.options: -------------------------------------------------------------------------------- 1 | # Debugging options for the com.codeandme.tracing bundle 2 | 3 | # global debug switch for this bundle 4 | com.codeandme.debugger.textinterpreter.debugger/debug=false 5 | -------------------------------------------------------------------------------- /debugger/03_simple_debugger/com.codeandme.debugger.textinterpreter.debugger/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /debugger/03_simple_debugger/com.codeandme.debugger.textinterpreter.debugger/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /debugger/03_simple_debugger/com.codeandme.debugger.textinterpreter.debugger/src/com/codeandme/debugger/textinterpreter/debugger/events/IDebugEvent.java: -------------------------------------------------------------------------------- 1 | package com.codeandme.debugger.textinterpreter.debugger.events; 2 | 3 | public interface IDebugEvent { 4 | } 5 | -------------------------------------------------------------------------------- /debugger/03_simple_debugger/com.codeandme.debugger.textinterpreter.ui/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /debugger/03_simple_debugger/com.codeandme.debugger.textinterpreter.ui/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml,\ 6 | images/ 7 | -------------------------------------------------------------------------------- /debugger/03_simple_debugger/com.codeandme.debugger.textinterpreter.ui/images/launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/debugger/03_simple_debugger/com.codeandme.debugger.textinterpreter.ui/images/launcher.png -------------------------------------------------------------------------------- /debugger/04_stepping/com.codeandme.debugger.textinterpreter.debugger/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /debugger/04_stepping/com.codeandme.debugger.textinterpreter.debugger/.options: -------------------------------------------------------------------------------- 1 | # Debugging options for the com.codeandme.tracing bundle 2 | 3 | # global debug switch for this bundle 4 | com.codeandme.debugger.textinterpreter.debugger/debug=false 5 | -------------------------------------------------------------------------------- /debugger/04_stepping/com.codeandme.debugger.textinterpreter.debugger/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /debugger/04_stepping/com.codeandme.debugger.textinterpreter.debugger/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /debugger/04_stepping/com.codeandme.debugger.textinterpreter.debugger/src/com/codeandme/debugger/textinterpreter/debugger/events/IDebugEvent.java: -------------------------------------------------------------------------------- 1 | package com.codeandme.debugger.textinterpreter.debugger.events; 2 | 3 | public interface IDebugEvent { 4 | } 5 | -------------------------------------------------------------------------------- /debugger/05_editor_breakpoints/com.codeandme.debugger.textinterpreter.debugger/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /debugger/05_editor_breakpoints/com.codeandme.debugger.textinterpreter.debugger/.options: -------------------------------------------------------------------------------- 1 | # Debugging options for the com.codeandme.tracing bundle 2 | 3 | # global debug switch for this bundle 4 | com.codeandme.debugger.textinterpreter.debugger/debug=false 5 | -------------------------------------------------------------------------------- /debugger/05_editor_breakpoints/com.codeandme.debugger.textinterpreter.debugger/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /debugger/05_editor_breakpoints/com.codeandme.debugger.textinterpreter.debugger/src/com/codeandme/debugger/textinterpreter/debugger/events/IDebugEvent.java: -------------------------------------------------------------------------------- 1 | package com.codeandme.debugger.textinterpreter.debugger.events; 2 | 3 | public interface IDebugEvent { 4 | } 5 | -------------------------------------------------------------------------------- /debugger/06_debugger_breakpoints/com.codeandme.debugger.textinterpreter.debugger/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /debugger/06_debugger_breakpoints/com.codeandme.debugger.textinterpreter.debugger/.options: -------------------------------------------------------------------------------- 1 | # Debugging options for the com.codeandme.tracing bundle 2 | 3 | # global debug switch for this bundle 4 | com.codeandme.debugger.textinterpreter.debugger/debug=false 5 | -------------------------------------------------------------------------------- /debugger/06_debugger_breakpoints/com.codeandme.debugger.textinterpreter.debugger/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /debugger/06_debugger_breakpoints/com.codeandme.debugger.textinterpreter.debugger/src/com/codeandme/debugger/textinterpreter/debugger/events/IDebugEvent.java: -------------------------------------------------------------------------------- 1 | package com.codeandme.debugger.textinterpreter.debugger.events; 2 | 3 | public interface IDebugEvent { 4 | } 5 | -------------------------------------------------------------------------------- /debugger/07_source_lookup/com.codeandme.debugger.textinterpreter.debugger/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /debugger/07_source_lookup/com.codeandme.debugger.textinterpreter.debugger/.options: -------------------------------------------------------------------------------- 1 | # Debugging options for the com.codeandme.tracing bundle 2 | 3 | # global debug switch for this bundle 4 | com.codeandme.debugger.textinterpreter.debugger/debug=false 5 | -------------------------------------------------------------------------------- /debugger/07_source_lookup/com.codeandme.debugger.textinterpreter.debugger/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /debugger/07_source_lookup/com.codeandme.debugger.textinterpreter.debugger/src/com/codeandme/debugger/textinterpreter/debugger/events/IDebugEvent.java: -------------------------------------------------------------------------------- 1 | package com.codeandme.debugger.textinterpreter.debugger.events; 2 | 3 | public interface IDebugEvent { 4 | } 5 | -------------------------------------------------------------------------------- /debugger/07_source_lookup/com.codeandme.debugger.textinterpreter.ui/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /debugger/07_source_lookup/com.codeandme.debugger.textinterpreter.ui/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml,\ 6 | images/ 7 | -------------------------------------------------------------------------------- /debugger/07_source_lookup/com.codeandme.debugger.textinterpreter.ui/images/launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/debugger/07_source_lookup/com.codeandme.debugger.textinterpreter.ui/images/launcher.png -------------------------------------------------------------------------------- /debugger/08_run_to_line/com.codeandme.debugger.textinterpreter.debugger/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /debugger/08_run_to_line/com.codeandme.debugger.textinterpreter.debugger/.options: -------------------------------------------------------------------------------- 1 | # Debugging options for the com.codeandme.tracing bundle 2 | 3 | # global debug switch for this bundle 4 | com.codeandme.debugger.textinterpreter.debugger/debug=false 5 | -------------------------------------------------------------------------------- /debugger/08_run_to_line/com.codeandme.debugger.textinterpreter.debugger/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml,\ 6 | images/ 7 | -------------------------------------------------------------------------------- /debugger/08_run_to_line/com.codeandme.debugger.textinterpreter.debugger/images/run_to_line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/debugger/08_run_to_line/com.codeandme.debugger.textinterpreter.debugger/images/run_to_line.gif -------------------------------------------------------------------------------- /debugger/08_run_to_line/com.codeandme.debugger.textinterpreter.debugger/src/com/codeandme/debugger/textinterpreter/debugger/events/IDebugEvent.java: -------------------------------------------------------------------------------- 1 | package com.codeandme.debugger.textinterpreter.debugger.events; 2 | 3 | public interface IDebugEvent { 4 | } 5 | -------------------------------------------------------------------------------- /debugger/09_variables/com.codeandme.debugger.textinterpreter.debugger/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /debugger/09_variables/com.codeandme.debugger.textinterpreter.debugger/.options: -------------------------------------------------------------------------------- 1 | # Debugging options for the com.codeandme.tracing bundle 2 | 3 | # global debug switch for this bundle 4 | com.codeandme.debugger.textinterpreter.debugger/debug=false 5 | -------------------------------------------------------------------------------- /debugger/09_variables/com.codeandme.debugger.textinterpreter.debugger/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml,\ 6 | images/ 7 | -------------------------------------------------------------------------------- /debugger/09_variables/com.codeandme.debugger.textinterpreter.debugger/images/run_to_line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/debugger/09_variables/com.codeandme.debugger.textinterpreter.debugger/images/run_to_line.gif -------------------------------------------------------------------------------- /debugger/09_variables/com.codeandme.debugger.textinterpreter.debugger/src/com/codeandme/debugger/textinterpreter/debugger/events/IDebugEvent.java: -------------------------------------------------------------------------------- 1 | package com.codeandme.debugger.textinterpreter.debugger.events; 2 | 3 | public interface IDebugEvent { 4 | } 5 | -------------------------------------------------------------------------------- /debugger/10_variable_editing/com.codeandme.debugger.textinterpreter.debugger/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /debugger/10_variable_editing/com.codeandme.debugger.textinterpreter.debugger/.options: -------------------------------------------------------------------------------- 1 | # Debugging options for the com.codeandme.tracing bundle 2 | 3 | # global debug switch for this bundle 4 | com.codeandme.debugger.textinterpreter.debugger/debug=false 5 | -------------------------------------------------------------------------------- /debugger/10_variable_editing/com.codeandme.debugger.textinterpreter.debugger/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml,\ 6 | images/ 7 | -------------------------------------------------------------------------------- /debugger/10_variable_editing/com.codeandme.debugger.textinterpreter.debugger/images/run_to_line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/debugger/10_variable_editing/com.codeandme.debugger.textinterpreter.debugger/images/run_to_line.gif -------------------------------------------------------------------------------- /debugger/10_variable_editing/com.codeandme.debugger.textinterpreter.debugger/src/com/codeandme/debugger/textinterpreter/debugger/events/IDebugEvent.java: -------------------------------------------------------------------------------- 1 | package com.codeandme.debugger.textinterpreter.debugger.events; 2 | 3 | public interface IDebugEvent { 4 | } 5 | -------------------------------------------------------------------------------- /debugger/11_watch_expressions/com.codeandme.debugger.textinterpreter.debugger/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /debugger/11_watch_expressions/com.codeandme.debugger.textinterpreter.debugger/.options: -------------------------------------------------------------------------------- 1 | # Debugging options for the com.codeandme.tracing bundle 2 | 3 | # global debug switch for this bundle 4 | com.codeandme.debugger.textinterpreter.debugger/debug=false 5 | -------------------------------------------------------------------------------- /debugger/11_watch_expressions/com.codeandme.debugger.textinterpreter.debugger/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml,\ 6 | images/ 7 | -------------------------------------------------------------------------------- /debugger/11_watch_expressions/com.codeandme.debugger.textinterpreter.debugger/images/run_to_line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/debugger/11_watch_expressions/com.codeandme.debugger.textinterpreter.debugger/images/run_to_line.gif -------------------------------------------------------------------------------- /debugger/11_watch_expressions/com.codeandme.debugger.textinterpreter.debugger/src/com/codeandme/debugger/textinterpreter/debugger/events/IDebugEvent.java: -------------------------------------------------------------------------------- 1 | package com.codeandme.debugger.textinterpreter.debugger.events; 2 | 3 | public interface IDebugEvent { 4 | } 5 | -------------------------------------------------------------------------------- /debugger/12_memory/com.codeandme.debugger.textinterpreter.debugger/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /debugger/12_memory/com.codeandme.debugger.textinterpreter.debugger/.options: -------------------------------------------------------------------------------- 1 | # Debugging options for the com.codeandme.tracing bundle 2 | 3 | # global debug switch for this bundle 4 | com.codeandme.debugger.textinterpreter.debugger/debug=false 5 | -------------------------------------------------------------------------------- /debugger/12_memory/com.codeandme.debugger.textinterpreter.debugger/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml,\ 6 | images/ 7 | -------------------------------------------------------------------------------- /debugger/12_memory/com.codeandme.debugger.textinterpreter.debugger/images/run_to_line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/debugger/12_memory/com.codeandme.debugger.textinterpreter.debugger/images/run_to_line.gif -------------------------------------------------------------------------------- /debugger/12_memory/com.codeandme.debugger.textinterpreter.debugger/src/com/codeandme/debugger/textinterpreter/debugger/events/IDebugEvent.java: -------------------------------------------------------------------------------- 1 | package com.codeandme.debugger.textinterpreter.debugger.events; 2 | 3 | public interface IDebugEvent { 4 | } 5 | -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell.playground/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Beanshell 4 | Bundle-SymbolicName: org.beanshell 5 | Bundle-Version: 1.0.0 6 | Bundle-RequiredExecutionEnvironment: JavaSE-1.8 7 | Export-Package: bsh 8 | -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHAllocationExpression.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHAllocationExpression.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHAmbiguousName.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHAmbiguousName.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHArguments.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHArguments.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHArrayDimensions.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHArrayDimensions.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHArrayInitializer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHArrayInitializer.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHAssignment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHAssignment.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHBinaryExpression.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHBinaryExpression.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHBlock$NodeFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHBlock$NodeFilter.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHBlock.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHBlock.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHCastExpression.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHCastExpression.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHClassDeclaration.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHClassDeclaration.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHEnhancedForStatement.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHEnhancedForStatement.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHForStatement.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHForStatement.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHFormalComment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHFormalComment.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHFormalParameter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHFormalParameter.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHFormalParameters.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHFormalParameters.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHIfStatement.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHIfStatement.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHImportDeclaration.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHImportDeclaration.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHLiteral.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHLiteral.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHMethodDeclaration.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHMethodDeclaration.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHMethodInvocation.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHMethodInvocation.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHPackageDeclaration.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHPackageDeclaration.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHPrimaryExpression.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHPrimaryExpression.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHPrimarySuffix.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHPrimarySuffix.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHPrimitiveType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHPrimitiveType.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHReturnStatement.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHReturnStatement.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHReturnType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHReturnType.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHStatementExpressionList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHStatementExpressionList.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHSwitchLabel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHSwitchLabel.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHSwitchStatement.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHSwitchStatement.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHTernaryExpression.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHTernaryExpression.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHThrowStatement.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHThrowStatement.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHTryStatement.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHTryStatement.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHType.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHTypedVariableDeclaration.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHTypedVariableDeclaration.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHUnaryExpression.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHUnaryExpression.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHVariableDeclarator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHVariableDeclarator.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BSHWhileStatement.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BSHWhileStatement.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BlockNameSpace.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BlockNameSpace.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BshClassManager$Listener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BshClassManager$Listener.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BshClassManager$SignatureKey.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BshClassManager$SignatureKey.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BshClassManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BshClassManager.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BshIterator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BshIterator.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/BshMethod.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/BshMethod.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/CallStack.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/CallStack.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/Capabilities$Unavailable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/Capabilities$Unavailable.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/Capabilities.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/Capabilities.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/ClassGenerator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/ClassGenerator.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/ClassGeneratorImpl$ClassNodeFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/ClassGeneratorImpl$ClassNodeFilter.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/ClassGeneratorImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/ClassGeneratorImpl.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/ClassGeneratorUtil$ConstructorArgs.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/ClassGeneratorUtil$ConstructorArgs.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/ClassGeneratorUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/ClassGeneratorUtil.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/ClassIdentifier.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/ClassIdentifier.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/ClassPathException.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/ClassPathException.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/CollectionManager$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/CollectionManager$1.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/CollectionManager$BasicBshIterator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/CollectionManager$BasicBshIterator.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/CollectionManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/CollectionManager.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/CommandLineReader.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/CommandLineReader.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/Console.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/Console.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/ConsoleInterface.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/ConsoleInterface.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/DelayedEvalBshMethod.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/DelayedEvalBshMethod.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/EvalError.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/EvalError.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/ExternalNameSpace.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/ExternalNameSpace.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/Interpreter$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/Interpreter$1.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/Interpreter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/Interpreter.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/InterpreterError.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/InterpreterError.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/JJTParserState.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/JJTParserState.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/JavaCharStream.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/JavaCharStream.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/LHS.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/LHS.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/Modifiers.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/Modifiers.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/Name.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/Name.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/NameSource$Listener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/NameSource$Listener.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/NameSource.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/NameSource.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/NameSpace.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/NameSpace.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/Node.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/Node.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/ParseException.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/ParseException.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/Parser$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/Parser$1.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/Parser$LookaheadSuccess.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/Parser$LookaheadSuccess.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/Parser.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/Parser.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/ParserConstants.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/ParserConstants.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/ParserTokenManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/ParserTokenManager.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/ParserTreeConstants.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/ParserTreeConstants.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/Primitive$Special.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/Primitive$Special.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/Primitive.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/Primitive.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/Reflect.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/Reflect.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/ReflectError.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/ReflectError.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/ReflectManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/ReflectManager.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/Remote.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/Remote.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/ReturnControl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/ReturnControl.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/SimpleNode$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/SimpleNode$1.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/SimpleNode.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/SimpleNode.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/StringUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/StringUtil.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/TargetError.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/TargetError.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/This.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/This.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/Token.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/Token.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/TokenMgrError.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/TokenMgrError.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/Types.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/Types.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/UtilEvalError.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/UtilEvalError.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/UtilTargetError.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/UtilTargetError.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/Variable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/Variable.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/XThis$Handler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/XThis$Handler.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/XThis.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/XThis.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/classpath/BshClassLoader.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/classpath/BshClassLoader.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/classpath/BshClassPath$AmbiguousName.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/classpath/BshClassPath$AmbiguousName.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/classpath/BshClassPath$ClassSource.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/classpath/BshClassPath$ClassSource.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/classpath/BshClassPath$DirClassSource.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/classpath/BshClassPath$DirClassSource.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/classpath/BshClassPath$GeneratedClassSource.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/classpath/BshClassPath$GeneratedClassSource.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/classpath/BshClassPath$JarClassSource.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/classpath/BshClassPath$JarClassSource.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/classpath/BshClassPath$MappingFeedback.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/classpath/BshClassPath$MappingFeedback.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/classpath/BshClassPath$UnqualifiedNameTable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/classpath/BshClassPath$UnqualifiedNameTable.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/classpath/BshClassPath.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/classpath/BshClassPath.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/classpath/ClassManagerImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/classpath/ClassManagerImpl.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/classpath/ClassPathListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/classpath/ClassPathListener.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/classpath/DiscreteFilesClassLoader$ClassSourceMap.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/classpath/DiscreteFilesClassLoader$ClassSourceMap.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/classpath/DiscreteFilesClassLoader.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/classpath/DiscreteFilesClassLoader.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/collection/CollectionIterator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/collection/CollectionIterator.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/collection/CollectionManagerImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/collection/CollectionManagerImpl.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/commands/bind.bsh: -------------------------------------------------------------------------------- 1 | /** 2 | Bind a bsh object into a particular namespace and interpreter 3 | */ 4 | import bsh.This; 5 | import bsh.NameSpace; 6 | 7 | bind( bsh.This ths, bsh.NameSpace namespace ) { 8 | This.bind( ths, namespace, this.interpreter ); 9 | } 10 | 11 | -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/commands/clear.bsh: -------------------------------------------------------------------------------- 1 | /** 2 | Clear all variables, methods, and imports from this namespace. 3 | If this namespace is the root, it will be reset to the default 4 | imports. 5 | See NameSpace.clear(); 6 | @see NameSpace.clear(); 7 | */ 8 | clear() { 9 | this.caller.namespace.clear(); 10 | } 11 | -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/commands/debug.bsh: -------------------------------------------------------------------------------- 1 | /** 2 | Toggle on and off debug mode. 3 | Debug output is verbose and generally useful only for developers. 4 | */ 5 | 6 | bsh.help.debug = "usage: debug()"; 7 | 8 | debug() { 9 | this.interpreter.DEBUG = !this.interpreter.DEBUG; 10 | } 11 | -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/commands/dir.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/commands/dir.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/commands/error.bsh: -------------------------------------------------------------------------------- 1 | /** 2 | Print the item as an error. 3 | In the GUI console the text will show up in (something like) red, 4 | else it will be printed to standard error. 5 | */ 6 | 7 | void error( item ) { 8 | this.interpreter.error( String.valueOf(item) ); 9 | } 10 | 11 | -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/commands/mv.bsh: -------------------------------------------------------------------------------- 1 | /** 2 | Rename a file (like Unix mv). 3 | */ 4 | 5 | bsh.help.mv = "usage: mv( fromFile, toFile )"; 6 | 7 | mv( String fromFile, String toFile ) 8 | { 9 | this.from = pathToFile( fromFile ); 10 | this.to = pathToFile( toFile ); 11 | from.renameTo( to ); 12 | } 13 | 14 | -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/commands/pwd.bsh: -------------------------------------------------------------------------------- 1 | /** 2 | Print the BeanShell working directory. This is the cwd obeyed by all the 3 | unix-like bsh commands. 4 | */ 5 | pwd() { 6 | print( bsh.cwd ); 7 | } 8 | 9 | -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/commands/setAccessibility.bsh: -------------------------------------------------------------------------------- 1 | /** 2 | Setting accessibility on enables to private and other non-public 3 | fields and method. 4 | */ 5 | import bsh.Capabilities; 6 | 7 | setAccessibility( boolean b ) 8 | { 9 | Capabilities.setAccessibility(b); 10 | } 11 | 12 | -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/org/objectweb/asm/ByteVector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/org/objectweb/asm/ByteVector.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/org/objectweb/asm/ClassVisitor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/org/objectweb/asm/ClassVisitor.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/org/objectweb/asm/ClassWriter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/org/objectweb/asm/ClassWriter.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/org/objectweb/asm/CodeVisitor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/org/objectweb/asm/CodeVisitor.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/org/objectweb/asm/CodeWriter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/org/objectweb/asm/CodeWriter.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/org/objectweb/asm/Constants.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/org/objectweb/asm/Constants.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/org/objectweb/asm/Edge.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/org/objectweb/asm/Edge.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/org/objectweb/asm/Item.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/org/objectweb/asm/Item.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/org/objectweb/asm/Label.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/org/objectweb/asm/Label.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/org/objectweb/asm/Type.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/org/objectweb/asm/Type.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/reflect/ReflectManagerImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/reflect/ReflectManagerImpl.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/servlet/BshServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/servlet/BshServlet.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/servlet/SimpleTemplate.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/servlet/SimpleTemplate.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/servlet/error.template: -------------------------------------------------------------------------------- 1 |

Script Threw Exception

2 |
3 | 4 |
5 |

6 | -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/servlet/result.template: -------------------------------------------------------------------------------- 1 |

Script Output

2 |
3 |
 4 | 
 5 | 
6 |
7 | 8 |

Script Return Value

9 |
10 | 
11 | 
12 |

13 | -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/AWTConsole$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/AWTConsole$1.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/AWTConsole.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/AWTConsole.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/AWTDemoApplet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/AWTDemoApplet.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/AWTRemoteApplet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/AWTRemoteApplet.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/BeanShellBSFEngine.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/BeanShellBSFEngine.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/BshCanvas.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/BshCanvas.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/ClassBrowser$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/ClassBrowser$1.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/ClassBrowser$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/ClassBrowser$2.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/ClassBrowser$PackageTree.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/ClassBrowser$PackageTree.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/ClassBrowser.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/ClassBrowser.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/GUIConsoleInterface.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/GUIConsoleInterface.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/Httpd.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/Httpd.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/HttpdConnection.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/HttpdConnection.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/JConsole$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/JConsole$1.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/JConsole$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/JConsole$2.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/JConsole$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/JConsole$3.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/JConsole$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/JConsole$4.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/JConsole$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/JConsole$5.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/JConsole$BlockingPipedInputStream.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/JConsole$BlockingPipedInputStream.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/JConsole.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/JConsole.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/JDemoApplet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/JDemoApplet.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/JRemoteApplet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/JRemoteApplet.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/NameCompletion.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/NameCompletion.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/NameCompletionTable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/NameCompletionTable.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/Sessiond.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/Sessiond.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/SessiondConnection.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/SessiondConnection.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/Util.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/Util.class -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/lib/eye.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/lib/eye.jpg -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/lib/icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/lib/icon.gif -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/lib/script.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/lib/script.gif -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/lib/small_bean_shell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/lib/small_bean_shell.gif -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/lib/splash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/lib/splash.gif -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/bsh/util/lib/workspace.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/ease_interpreter/01_beanshell/org.beanshell/bsh/util/lib/workspace.gif -------------------------------------------------------------------------------- /ease_interpreter/01_beanshell/org.beanshell/build.properties: -------------------------------------------------------------------------------- 1 | source.. = . 2 | output.. = . 3 | bin.includes = META-INF/,\ 4 | bsh/ 5 | -------------------------------------------------------------------------------- /ease_interpreter/02_basic_interpreter/org.eclipse.ease.lang.beanshell/bin/.gitignore: -------------------------------------------------------------------------------- 1 | /org/ 2 | -------------------------------------------------------------------------------- /ease_interpreter/02_basic_interpreter/org.eclipse.ease.lang.beanshell/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /ease_interpreter/03_classloader/org.eclipse.ease.lang.beanshell/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /ease_interpreter/03_classloader/org.eclipse.ease.lang.beanshell/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /ease_interpreter/04_modules_support/org.eclipse.ease.lang.beanshell/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /ease_interpreter/04_modules_support/org.eclipse.ease.lang.beanshell/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /ease_interpreter/05_script_keywords/org.eclipse.ease.lang.beanshell/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /ease_interpreter/05_script_keywords/org.eclipse.ease.lang.beanshell/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /form_editor_with_xml_source_view/com.codeandme.multiparteditor/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /form_editor_with_xml_source_view/com.codeandme.multiparteditor/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /generic_drag_and_drop/com.codeandme.draganddrop/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /generic_drag_and_drop/com.codeandme.draganddrop/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /headless_application/com.codeandme.headless/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /headless_application/com.codeandme.headless/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = plugin.xml,\ 4 | META-INF/,\ 5 | . 6 | -------------------------------------------------------------------------------- /hiding_ui_elements_in_rcp/com.codeandme.hideui/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /jenkins/01_empty_plugin/builder.hello/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Nov 27 20:35:34 CET 2018 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 3 | eclipse.preferences.version=1 4 | org.eclipse.jdt.core.compiler.source=1.7 5 | org.eclipse.jdt.core.compiler.compliance=1.7 6 | -------------------------------------------------------------------------------- /jenkins/01_empty_plugin/builder.hello/src/main/resources/index.jelly: -------------------------------------------------------------------------------- 1 | 2 |
3 | TODO 4 |
5 | -------------------------------------------------------------------------------- /jenkins/02_builder_plugin/builder.hello/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Nov 27 20:35:34 CET 2018 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 3 | eclipse.preferences.version=1 4 | org.eclipse.jdt.core.compiler.source=1.7 5 | org.eclipse.jdt.core.compiler.compliance=1.7 6 | -------------------------------------------------------------------------------- /jenkins/02_builder_plugin/builder.hello/src/main/resources/com/codeandme/jenkins/builder/HelloBuilder/help-failBuild.html: -------------------------------------------------------------------------------- 1 | Tick the checkbox to force this build step to fail. -------------------------------------------------------------------------------- /jenkins/02_builder_plugin/builder.hello/src/main/resources/com/codeandme/jenkins/builder/HelloBuilder/help.html: -------------------------------------------------------------------------------- 1 | This builder provides a simple build step that will fail upon user request. -------------------------------------------------------------------------------- /jenkins/02_builder_plugin/builder.hello/src/main/resources/index.jelly: -------------------------------------------------------------------------------- 1 | 2 |
3 | TODO 4 |
5 | -------------------------------------------------------------------------------- /jenkins/03_text_input/builder.hello/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Nov 27 20:35:34 CET 2018 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 3 | eclipse.preferences.version=1 4 | org.eclipse.jdt.core.compiler.source=1.7 5 | org.eclipse.jdt.core.compiler.compliance=1.7 6 | -------------------------------------------------------------------------------- /jenkins/03_text_input/builder.hello/src/main/resources/com/codeandme/jenkins/builder/HelloBuilder/help-buildMessage.html: -------------------------------------------------------------------------------- 1 | Provide a message which will be printed to the log. -------------------------------------------------------------------------------- /jenkins/03_text_input/builder.hello/src/main/resources/com/codeandme/jenkins/builder/HelloBuilder/help-failBuild.html: -------------------------------------------------------------------------------- 1 | Tick the checkbox to force this build step to fail. -------------------------------------------------------------------------------- /jenkins/03_text_input/builder.hello/src/main/resources/com/codeandme/jenkins/builder/HelloBuilder/help.html: -------------------------------------------------------------------------------- 1 | This builder provides a simple build step that will fail upon user request. -------------------------------------------------------------------------------- /jenkins/03_text_input/builder.hello/src/main/resources/index.jelly: -------------------------------------------------------------------------------- 1 | 2 |
3 | TODO 4 |
5 | -------------------------------------------------------------------------------- /jenkins/04_unit_tests/builder.hello/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Nov 27 20:35:34 CET 2018 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 3 | eclipse.preferences.version=1 4 | org.eclipse.jdt.core.compiler.source=1.7 5 | org.eclipse.jdt.core.compiler.compliance=1.7 6 | -------------------------------------------------------------------------------- /jenkins/04_unit_tests/builder.hello/src/main/resources/com/codeandme/jenkins/builder/HelloBuilder/help-buildMessage.html: -------------------------------------------------------------------------------- 1 | Provide a message which will be printed to the log. -------------------------------------------------------------------------------- /jenkins/04_unit_tests/builder.hello/src/main/resources/com/codeandme/jenkins/builder/HelloBuilder/help-failBuild.html: -------------------------------------------------------------------------------- 1 | Tick the checkbox to force this build step to fail. -------------------------------------------------------------------------------- /jenkins/04_unit_tests/builder.hello/src/main/resources/com/codeandme/jenkins/builder/HelloBuilder/help.html: -------------------------------------------------------------------------------- 1 | This builder provides a simple build step that will fail upon user request. -------------------------------------------------------------------------------- /jenkins/04_unit_tests/builder.hello/src/main/resources/index.jelly: -------------------------------------------------------------------------------- 1 | 2 |
3 | TODO 4 |
5 | -------------------------------------------------------------------------------- /jenkins/05_combo_input/builder.hello/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Nov 27 20:35:34 CET 2018 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 3 | eclipse.preferences.version=1 4 | org.eclipse.jdt.core.compiler.source=1.7 5 | org.eclipse.jdt.core.compiler.compliance=1.7 6 | -------------------------------------------------------------------------------- /jenkins/05_combo_input/builder.hello/src/main/resources/com/codeandme/jenkins/builder/HelloBuilder/help-buildDelay.html: -------------------------------------------------------------------------------- 1 | Define how much build delay should be introduced by this build step. -------------------------------------------------------------------------------- /jenkins/05_combo_input/builder.hello/src/main/resources/com/codeandme/jenkins/builder/HelloBuilder/help-buildMessage.html: -------------------------------------------------------------------------------- 1 | Provide a message which will be printed to the log. -------------------------------------------------------------------------------- /jenkins/05_combo_input/builder.hello/src/main/resources/com/codeandme/jenkins/builder/HelloBuilder/help-failBuild.html: -------------------------------------------------------------------------------- 1 | Tick the checkbox to force this build step to fail. -------------------------------------------------------------------------------- /jenkins/05_combo_input/builder.hello/src/main/resources/com/codeandme/jenkins/builder/HelloBuilder/help.html: -------------------------------------------------------------------------------- 1 | This builder provides a simple build step that will fail upon user request. -------------------------------------------------------------------------------- /jenkins/05_combo_input/builder.hello/src/main/resources/index.jelly: -------------------------------------------------------------------------------- 1 | 2 |
3 | TODO 4 |
5 | -------------------------------------------------------------------------------- /jenkins/06_advanced_configuration/builder.hello/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Nov 27 20:35:34 CET 2018 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 3 | eclipse.preferences.version=1 4 | org.eclipse.jdt.core.compiler.source=1.7 5 | org.eclipse.jdt.core.compiler.compliance=1.7 6 | -------------------------------------------------------------------------------- /jenkins/06_advanced_configuration/builder.hello/src/main/resources/com/codeandme/jenkins/builder/HelloBuilder/help-buildDelay.html: -------------------------------------------------------------------------------- 1 | Define how much build delay should be introduced by this build step. -------------------------------------------------------------------------------- /jenkins/06_advanced_configuration/builder.hello/src/main/resources/com/codeandme/jenkins/builder/HelloBuilder/help-buildMessage.html: -------------------------------------------------------------------------------- 1 | Provide a message which will be printed to the log. -------------------------------------------------------------------------------- /jenkins/06_advanced_configuration/builder.hello/src/main/resources/com/codeandme/jenkins/builder/HelloBuilder/help-failBuild.html: -------------------------------------------------------------------------------- 1 | Tick the checkbox to force this build step to fail. -------------------------------------------------------------------------------- /jenkins/06_advanced_configuration/builder.hello/src/main/resources/com/codeandme/jenkins/builder/HelloBuilder/help.html: -------------------------------------------------------------------------------- 1 | This builder provides a simple build step that will fail upon user request. -------------------------------------------------------------------------------- /jenkins/06_advanced_configuration/builder.hello/src/main/resources/index.jelly: -------------------------------------------------------------------------------- 1 | 2 |
3 | TODO 4 |
5 | -------------------------------------------------------------------------------- /jenkins/07_pipeline/builder.hello/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | /work/ 3 | -------------------------------------------------------------------------------- /jenkins/07_pipeline/builder.hello/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Dec 18 11:23:23 CET 2018 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 3 | eclipse.preferences.version=1 4 | org.eclipse.jdt.core.compiler.source=1.8 5 | org.eclipse.jdt.core.compiler.compliance=1.8 6 | -------------------------------------------------------------------------------- /jenkins/07_pipeline/builder.hello/src/main/resources/com/codeandme/jenkins/builder/HelloBuilder/help-buildDelay.html: -------------------------------------------------------------------------------- 1 | Define how much build delay should be introduced by this build step. -------------------------------------------------------------------------------- /jenkins/07_pipeline/builder.hello/src/main/resources/com/codeandme/jenkins/builder/HelloBuilder/help-buildMessage.html: -------------------------------------------------------------------------------- 1 | Provide a message which will be printed to the log. -------------------------------------------------------------------------------- /jenkins/07_pipeline/builder.hello/src/main/resources/com/codeandme/jenkins/builder/HelloBuilder/help-failBuild.html: -------------------------------------------------------------------------------- 1 | Tick the checkbox to force this build step to fail. -------------------------------------------------------------------------------- /jenkins/07_pipeline/builder.hello/src/main/resources/com/codeandme/jenkins/builder/HelloBuilder/help.html: -------------------------------------------------------------------------------- 1 | This builder provides a simple build step that will fail upon user request. -------------------------------------------------------------------------------- /jenkins/07_pipeline/builder.hello/src/main/resources/index.jelly: -------------------------------------------------------------------------------- 1 | 2 |
3 | TODO 4 |
5 | -------------------------------------------------------------------------------- /jfreechart/com.codeandme.jfreechart/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /jfreechart/com.codeandme.jfreechart/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /jni_made_easy/JNI_Library_linux/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /jni_made_easy/JNI_Library_windows/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | -------------------------------------------------------------------------------- /jni_made_easy/com.codeandme.jni/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /jni_made_easy/com.codeandme.jni/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /jni_made_easy/com.codeandme.jni/resources/libJNI_Library_linux.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/jni_made_easy/com.codeandme.jni/resources/libJNI_Library_linux.so -------------------------------------------------------------------------------- /jni_made_easy/com.codeandme.jni/resources/libJNI_Library_windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/jni_made_easy/com.codeandme.jni/resources/libJNI_Library_windows.dll -------------------------------------------------------------------------------- /minimal_application/com.codeandme.eclipse.minimal.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /minimal_application/com.codeandme.eclipse.minimal/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /minimal_application/com.codeandme.eclipse.minimal/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Minimal Eclipse Setup 4 | Bundle-SymbolicName: com.codeandme.eclipse.minimal;singleton:=true 5 | Bundle-Version: 1.0.0.qualifier 6 | Bundle-Vendor: codeandme.blogspot.com 7 | Bundle-RequiredExecutionEnvironment: JavaSE-1.8 8 | -------------------------------------------------------------------------------- /minimal_application/com.codeandme.eclipse.minimal/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /oomph/03_first_project_setup/com.codeandme.oomph/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | com.codeandme.oomph 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /oomph/04_p2_install_tasks/com.codeandme.oomph/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | com.codeandme.oomph 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /oomph/05_git_checkout/com.codeandme.oomph/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | com.codeandme.oomph 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /oomph/06_targlets/com.codeandme.oomph/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | com.codeandme.oomph 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /rest_client/com.codeandme.restclient.resteasy/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /rest_client/com.codeandme.restclient.resteasy/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /rest_client/org.jboss.resteasy/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /*.jar 3 | -------------------------------------------------------------------------------- /rest_client/org.jboss.resteasy/readme.txt: -------------------------------------------------------------------------------- 1 | This project is missing the required jar files. 2 | Please checkout [1] to find the download locations for the required jars. 3 | The list of jars is provided in META-INF/MANIFEST.MF 4 | 5 | [1] https://codeandme.blogspot.com/2019/11/jakarta-microprofile-rest-client-in.html -------------------------------------------------------------------------------- /reusing_xml_source_editor/com.codeandme.xmleditor/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /reusing_xml_source_editor/com.codeandme.xmleditor/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /search_provider/com.codeandme.searchprovider/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /search_provider/com.codeandme.searchprovider/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /tools/com.codeandme.tools/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /tools/com.codeandme.tools/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /tracing/com.codeandme.tracing/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /tracing/com.codeandme.tracing/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | .options 6 | -------------------------------------------------------------------------------- /tycho/00_initial_setup/com.codeandme.tycho.plugin.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /tycho/00_initial_setup/com.codeandme.tycho.plugin/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /target/ 3 | -------------------------------------------------------------------------------- /tycho/00_initial_setup/com.codeandme.tycho.plugin/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/00_initial_setup/com.codeandme.tycho.plugin/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /tycho/00_initial_setup/com.codeandme.tycho.product.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /tycho/00_initial_setup/com.codeandme.tycho.product/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /tycho/00_initial_setup/com.codeandme.tycho.product/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Tycho Product 4 | Bundle-SymbolicName: com.codeandme.tycho.product;singleton:=true 5 | Bundle-Version: 1.0.0.qualifier 6 | Bundle-Vendor: codeandme.blogspot.com 7 | Bundle-RequiredExecutionEnvironment: JavaSE-1.6 8 | -------------------------------------------------------------------------------- /tycho/00_initial_setup/com.codeandme.tycho.product/build.properties: -------------------------------------------------------------------------------- 1 | output.. = bin/ 2 | bin.includes = META-INF/,\ 3 | .,\ 4 | plugin.xml 5 | -------------------------------------------------------------------------------- /tycho/01_build_plugins/com.codeandme.tycho.plugin.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /tycho/01_build_plugins/com.codeandme.tycho.plugin/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /target/ 3 | -------------------------------------------------------------------------------- /tycho/01_build_plugins/com.codeandme.tycho.plugin/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/01_build_plugins/com.codeandme.tycho.plugin/bin/com/example/tycho/plugin/ExampleView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/tycho/01_build_plugins/com.codeandme.tycho.plugin/bin/com/example/tycho/plugin/ExampleView.class -------------------------------------------------------------------------------- /tycho/01_build_plugins/com.codeandme.tycho.plugin/bin/com/example/tycho/plugin/OpenViewCommand.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/tycho/01_build_plugins/com.codeandme.tycho.plugin/bin/com/example/tycho/plugin/OpenViewCommand.class -------------------------------------------------------------------------------- /tycho/01_build_plugins/com.codeandme.tycho.plugin/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /tycho/01_build_plugins/com.codeandme.tycho.product.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /tycho/01_build_plugins/com.codeandme.tycho.product/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /tycho/01_build_plugins/com.codeandme.tycho.product/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Tycho Product 4 | Bundle-SymbolicName: com.codeandme.tycho.product;singleton:=true 5 | Bundle-Version: 1.0.0.qualifier 6 | Bundle-Vendor: codeandme.blogspot.com 7 | Bundle-RequiredExecutionEnvironment: JavaSE-1.6 8 | -------------------------------------------------------------------------------- /tycho/01_build_plugins/com.codeandme.tycho.product/build.properties: -------------------------------------------------------------------------------- 1 | output.. = bin/ 2 | bin.includes = META-INF/,\ 3 | .,\ 4 | plugin.xml 5 | -------------------------------------------------------------------------------- /tycho/03_global_build_project/com.codeandme.tycho.plugin.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /tycho/03_global_build_project/com.codeandme.tycho.plugin/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /target/ 3 | -------------------------------------------------------------------------------- /tycho/03_global_build_project/com.codeandme.tycho.plugin/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/03_global_build_project/com.codeandme.tycho.plugin/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /tycho/03_global_build_project/com.codeandme.tycho.product.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /tycho/03_global_build_project/com.codeandme.tycho.product/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /tycho/03_global_build_project/com.codeandme.tycho.product/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Tycho Product 4 | Bundle-SymbolicName: com.codeandme.tycho.product;singleton:=true 5 | Bundle-Version: 1.0.0.qualifier 6 | Bundle-Vendor: codeandme.blogspot.com 7 | Bundle-RequiredExecutionEnvironment: JavaSE-1.6 8 | -------------------------------------------------------------------------------- /tycho/03_global_build_project/com.codeandme.tycho.product/build.properties: -------------------------------------------------------------------------------- 1 | output.. = bin/ 2 | bin.includes = META-INF/,\ 3 | .,\ 4 | plugin.xml 5 | -------------------------------------------------------------------------------- /tycho/03_global_build_project/com.codeandme.tycho.releng/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/04_build_features/com.codeandme.tycho.plugin.feature/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/04_build_features/com.codeandme.tycho.plugin.feature/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/04_build_features/com.codeandme.tycho.plugin.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /tycho/04_build_features/com.codeandme.tycho.plugin/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /target/ 3 | -------------------------------------------------------------------------------- /tycho/04_build_features/com.codeandme.tycho.plugin/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/04_build_features/com.codeandme.tycho.plugin/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /tycho/04_build_features/com.codeandme.tycho.product.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /tycho/04_build_features/com.codeandme.tycho.product/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /tycho/04_build_features/com.codeandme.tycho.product/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Tycho Product 4 | Bundle-SymbolicName: com.codeandme.tycho.product;singleton:=true 5 | Bundle-Version: 1.0.0.qualifier 6 | Bundle-Vendor: codeandme.blogspot.com 7 | Bundle-RequiredExecutionEnvironment: JavaSE-1.6 8 | -------------------------------------------------------------------------------- /tycho/04_build_features/com.codeandme.tycho.product/build.properties: -------------------------------------------------------------------------------- 1 | output.. = bin/ 2 | bin.includes = META-INF/,\ 3 | .,\ 4 | plugin.xml 5 | -------------------------------------------------------------------------------- /tycho/04_build_features/com.codeandme.tycho.releng/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/05_build_update_sites/com.codeandme.tycho.plugin.feature/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/05_build_update_sites/com.codeandme.tycho.plugin.feature/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/05_build_update_sites/com.codeandme.tycho.plugin.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /tycho/05_build_update_sites/com.codeandme.tycho.plugin/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /target/ 3 | -------------------------------------------------------------------------------- /tycho/05_build_update_sites/com.codeandme.tycho.plugin/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/05_build_update_sites/com.codeandme.tycho.plugin/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /tycho/05_build_update_sites/com.codeandme.tycho.product.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /tycho/05_build_update_sites/com.codeandme.tycho.product/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /tycho/05_build_update_sites/com.codeandme.tycho.product/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Tycho Product 4 | Bundle-SymbolicName: com.codeandme.tycho.product;singleton:=true 5 | Bundle-Version: 1.0.0.qualifier 6 | Bundle-Vendor: codeandme.blogspot.com 7 | Bundle-RequiredExecutionEnvironment: JavaSE-1.6 8 | -------------------------------------------------------------------------------- /tycho/05_build_update_sites/com.codeandme.tycho.product/build.properties: -------------------------------------------------------------------------------- 1 | output.. = bin/ 2 | bin.includes = META-INF/,\ 3 | .,\ 4 | plugin.xml 5 | -------------------------------------------------------------------------------- /tycho/05_build_update_sites/com.codeandme.tycho.releng.p2/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/05_build_update_sites/com.codeandme.tycho.releng.p2/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/05_build_update_sites/com.codeandme.tycho.releng/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/06_build_products/com.codeandme.tycho.plugin.feature/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/06_build_products/com.codeandme.tycho.plugin.feature/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/06_build_products/com.codeandme.tycho.plugin.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /tycho/06_build_products/com.codeandme.tycho.plugin/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /target/ 3 | -------------------------------------------------------------------------------- /tycho/06_build_products/com.codeandme.tycho.plugin/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/06_build_products/com.codeandme.tycho.plugin/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /tycho/06_build_products/com.codeandme.tycho.product.feature/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/06_build_products/com.codeandme.tycho.product.feature/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/06_build_products/com.codeandme.tycho.product.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /tycho/06_build_products/com.codeandme.tycho.product/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/06_build_products/com.codeandme.tycho.product/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/06_build_products/com.codeandme.tycho.product/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Tycho Product 4 | Bundle-SymbolicName: com.codeandme.tycho.product;singleton:=true 5 | Bundle-Version: 1.0.0.qualifier 6 | Bundle-Vendor: codeandme.blogspot.com 7 | Bundle-RequiredExecutionEnvironment: JavaSE-1.6 8 | -------------------------------------------------------------------------------- /tycho/06_build_products/com.codeandme.tycho.product/build.properties: -------------------------------------------------------------------------------- 1 | output.. = bin/ 2 | bin.includes = META-INF/,\ 3 | .,\ 4 | plugin.xml 5 | -------------------------------------------------------------------------------- /tycho/06_build_products/com.codeandme.tycho.releng.p2/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/06_build_products/com.codeandme.tycho.releng.p2/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/06_build_products/com.codeandme.tycho.releng.product/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/06_build_products/com.codeandme.tycho.releng.product/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/06_build_products/com.codeandme.tycho.releng.product/Tycho.p2.inf: -------------------------------------------------------------------------------- 1 | instructions.configure=\ 2 | org.eclipse.equinox.p2.touchpoint.eclipse.addRepository(type:0,location:http${#58}//download.eclipse.org/releases/mars,name:Mars);\ 3 | org.eclipse.equinox.p2.touchpoint.eclipse.addRepository(type:1,location:http${#58}//download.eclipse.org/releases/mars,name:Mars); 4 | 5 | -------------------------------------------------------------------------------- /tycho/06_build_products/com.codeandme.tycho.releng/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/07_unit_tests/com.codeandme.tycho.plugin.feature/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/07_unit_tests/com.codeandme.tycho.plugin.feature/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/07_unit_tests/com.codeandme.tycho.plugin.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /tycho/07_unit_tests/com.codeandme.tycho.plugin.test/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/07_unit_tests/com.codeandme.tycho.plugin.test/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/07_unit_tests/com.codeandme.tycho.plugin.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /tycho/07_unit_tests/com.codeandme.tycho.plugin/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /target/ 3 | -------------------------------------------------------------------------------- /tycho/07_unit_tests/com.codeandme.tycho.plugin/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/07_unit_tests/com.codeandme.tycho.plugin/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /tycho/07_unit_tests/com.codeandme.tycho.product.feature/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/07_unit_tests/com.codeandme.tycho.product.feature/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/07_unit_tests/com.codeandme.tycho.product.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /tycho/07_unit_tests/com.codeandme.tycho.product/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/07_unit_tests/com.codeandme.tycho.product/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/07_unit_tests/com.codeandme.tycho.product/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Tycho Product 4 | Bundle-SymbolicName: com.codeandme.tycho.product;singleton:=true 5 | Bundle-Version: 1.0.0.qualifier 6 | Bundle-Vendor: codeandme.blogspot.com 7 | Bundle-RequiredExecutionEnvironment: JavaSE-1.6 8 | -------------------------------------------------------------------------------- /tycho/07_unit_tests/com.codeandme.tycho.product/build.properties: -------------------------------------------------------------------------------- 1 | output.. = bin/ 2 | bin.includes = META-INF/,\ 3 | .,\ 4 | plugin.xml 5 | -------------------------------------------------------------------------------- /tycho/07_unit_tests/com.codeandme.tycho.releng.p2/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/07_unit_tests/com.codeandme.tycho.releng.p2/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/07_unit_tests/com.codeandme.tycho.releng.product/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/07_unit_tests/com.codeandme.tycho.releng.product/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/07_unit_tests/com.codeandme.tycho.releng.product/Tycho.p2.inf: -------------------------------------------------------------------------------- 1 | instructions.configure=\ 2 | org.eclipse.equinox.p2.touchpoint.eclipse.addRepository(type:0,location:http${#58}//download.eclipse.org/releases/mars,name:Mars);\ 3 | org.eclipse.equinox.p2.touchpoint.eclipse.addRepository(type:1,location:http${#58}//download.eclipse.org/releases/mars,name:Mars); 4 | 5 | -------------------------------------------------------------------------------- /tycho/07_unit_tests/com.codeandme.tycho.releng/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/08_target_platform/com.codeandme.tycho.plugin.feature/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/08_target_platform/com.codeandme.tycho.plugin.feature/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/08_target_platform/com.codeandme.tycho.plugin.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /tycho/08_target_platform/com.codeandme.tycho.plugin.test/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/08_target_platform/com.codeandme.tycho.plugin.test/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/08_target_platform/com.codeandme.tycho.plugin.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /tycho/08_target_platform/com.codeandme.tycho.plugin/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /target/ 3 | -------------------------------------------------------------------------------- /tycho/08_target_platform/com.codeandme.tycho.plugin/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/08_target_platform/com.codeandme.tycho.plugin/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /tycho/08_target_platform/com.codeandme.tycho.product.feature/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/08_target_platform/com.codeandme.tycho.product.feature/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/08_target_platform/com.codeandme.tycho.product.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /tycho/08_target_platform/com.codeandme.tycho.product/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/08_target_platform/com.codeandme.tycho.product/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/08_target_platform/com.codeandme.tycho.product/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Tycho Product 4 | Bundle-SymbolicName: com.codeandme.tycho.product;singleton:=true 5 | Bundle-Version: 1.0.0.qualifier 6 | Bundle-Vendor: codeandme.blogspot.com 7 | Bundle-RequiredExecutionEnvironment: JavaSE-1.6 8 | -------------------------------------------------------------------------------- /tycho/08_target_platform/com.codeandme.tycho.product/build.properties: -------------------------------------------------------------------------------- 1 | output.. = bin/ 2 | bin.includes = META-INF/,\ 3 | .,\ 4 | plugin.xml 5 | -------------------------------------------------------------------------------- /tycho/08_target_platform/com.codeandme.tycho.releng.p2/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/08_target_platform/com.codeandme.tycho.releng.p2/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/08_target_platform/com.codeandme.tycho.releng.product/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/08_target_platform/com.codeandme.tycho.releng.product/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/08_target_platform/com.codeandme.tycho.releng.product/Tycho.p2.inf: -------------------------------------------------------------------------------- 1 | instructions.configure=\ 2 | org.eclipse.equinox.p2.touchpoint.eclipse.addRepository(type:0,location:http${#58}//download.eclipse.org/releases/mars,name:Mars);\ 3 | org.eclipse.equinox.p2.touchpoint.eclipse.addRepository(type:1,location:http${#58}//download.eclipse.org/releases/mars,name:Mars); 4 | 5 | -------------------------------------------------------------------------------- /tycho/08_target_platform/com.codeandme.tycho.releng.targetplatform/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/08_target_platform/com.codeandme.tycho.releng/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/09_update_versions/com.codeandme.tycho.plugin.feature/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/09_update_versions/com.codeandme.tycho.plugin.feature/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/09_update_versions/com.codeandme.tycho.plugin.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /tycho/09_update_versions/com.codeandme.tycho.plugin.test/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/09_update_versions/com.codeandme.tycho.plugin.test/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/09_update_versions/com.codeandme.tycho.plugin.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /tycho/09_update_versions/com.codeandme.tycho.plugin/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /target/ 3 | -------------------------------------------------------------------------------- /tycho/09_update_versions/com.codeandme.tycho.plugin/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/09_update_versions/com.codeandme.tycho.plugin/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /tycho/09_update_versions/com.codeandme.tycho.product.feature/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/09_update_versions/com.codeandme.tycho.product.feature/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/09_update_versions/com.codeandme.tycho.product.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /tycho/09_update_versions/com.codeandme.tycho.product/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/09_update_versions/com.codeandme.tycho.product/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/09_update_versions/com.codeandme.tycho.product/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Tycho Product 4 | Bundle-SymbolicName: com.codeandme.tycho.product;singleton:=true 5 | Bundle-Version: 1.0.0.qualifier 6 | Bundle-Vendor: codeandme.blogspot.com 7 | Bundle-RequiredExecutionEnvironment: JavaSE-1.6 8 | -------------------------------------------------------------------------------- /tycho/09_update_versions/com.codeandme.tycho.product/build.properties: -------------------------------------------------------------------------------- 1 | output.. = bin/ 2 | bin.includes = META-INF/,\ 3 | .,\ 4 | plugin.xml 5 | -------------------------------------------------------------------------------- /tycho/09_update_versions/com.codeandme.tycho.releng.p2/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/09_update_versions/com.codeandme.tycho.releng.p2/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/09_update_versions/com.codeandme.tycho.releng.product/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/09_update_versions/com.codeandme.tycho.releng.product/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/09_update_versions/com.codeandme.tycho.releng.product/Tycho.p2.inf: -------------------------------------------------------------------------------- 1 | instructions.configure=\ 2 | org.eclipse.equinox.p2.touchpoint.eclipse.addRepository(type:0,location:http${#58}//download.eclipse.org/releases/mars,name:Mars);\ 3 | org.eclipse.equinox.p2.touchpoint.eclipse.addRepository(type:1,location:http${#58}//download.eclipse.org/releases/mars,name:Mars); 4 | 5 | -------------------------------------------------------------------------------- /tycho/09_update_versions/com.codeandme.tycho.releng.targetplatform/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/09_update_versions/com.codeandme.tycho.releng/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/10_code_signing/com.codeandme.tycho.plugin.feature/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/10_code_signing/com.codeandme.tycho.plugin.feature/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/10_code_signing/com.codeandme.tycho.plugin.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /tycho/10_code_signing/com.codeandme.tycho.plugin.test/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/10_code_signing/com.codeandme.tycho.plugin.test/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/10_code_signing/com.codeandme.tycho.plugin.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /tycho/10_code_signing/com.codeandme.tycho.plugin/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /target/ 3 | -------------------------------------------------------------------------------- /tycho/10_code_signing/com.codeandme.tycho.plugin/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/10_code_signing/com.codeandme.tycho.plugin/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /tycho/10_code_signing/com.codeandme.tycho.product.feature/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/10_code_signing/com.codeandme.tycho.product.feature/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/10_code_signing/com.codeandme.tycho.product.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /tycho/10_code_signing/com.codeandme.tycho.product/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/10_code_signing/com.codeandme.tycho.product/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/10_code_signing/com.codeandme.tycho.product/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Tycho Product 4 | Bundle-SymbolicName: com.codeandme.tycho.product;singleton:=true 5 | Bundle-Version: 1.0.0.qualifier 6 | Bundle-Vendor: codeandme.blogspot.com 7 | Bundle-RequiredExecutionEnvironment: JavaSE-1.6 8 | -------------------------------------------------------------------------------- /tycho/10_code_signing/com.codeandme.tycho.product/build.properties: -------------------------------------------------------------------------------- 1 | output.. = bin/ 2 | bin.includes = META-INF/,\ 3 | .,\ 4 | plugin.xml 5 | -------------------------------------------------------------------------------- /tycho/10_code_signing/com.codeandme.tycho.releng.p2/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/10_code_signing/com.codeandme.tycho.releng.p2/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/10_code_signing/com.codeandme.tycho.releng.product/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/10_code_signing/com.codeandme.tycho.releng.product/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/10_code_signing/com.codeandme.tycho.releng.product/Tycho.p2.inf: -------------------------------------------------------------------------------- 1 | instructions.configure=\ 2 | org.eclipse.equinox.p2.touchpoint.eclipse.addRepository(type:0,location:http${#58}//download.eclipse.org/releases/mars,name:Mars);\ 3 | org.eclipse.equinox.p2.touchpoint.eclipse.addRepository(type:1,location:http${#58}//download.eclipse.org/releases/mars,name:Mars); 4 | 5 | -------------------------------------------------------------------------------- /tycho/10_code_signing/com.codeandme.tycho.releng.targetplatform/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/10_code_signing/com.codeandme.tycho.releng/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/10_code_signing/com.codeandme.tycho.releng/SampleCA.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/tycho/10_code_signing/com.codeandme.tycho.releng/SampleCA.pfx -------------------------------------------------------------------------------- /tycho/10_code_signing/com.codeandme.tycho.releng/blog.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/tycho/10_code_signing/com.codeandme.tycho.releng/blog.keystore -------------------------------------------------------------------------------- /tycho/11_root_level_features/com.codeandme.tycho.plugin.feature/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/11_root_level_features/com.codeandme.tycho.plugin.feature/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/11_root_level_features/com.codeandme.tycho.plugin.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /tycho/11_root_level_features/com.codeandme.tycho.plugin.test/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/11_root_level_features/com.codeandme.tycho.plugin.test/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/11_root_level_features/com.codeandme.tycho.plugin.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /tycho/11_root_level_features/com.codeandme.tycho.plugin/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /target/ 3 | -------------------------------------------------------------------------------- /tycho/11_root_level_features/com.codeandme.tycho.plugin/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/11_root_level_features/com.codeandme.tycho.plugin/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /tycho/11_root_level_features/com.codeandme.tycho.product.feature/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/11_root_level_features/com.codeandme.tycho.product.feature/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/11_root_level_features/com.codeandme.tycho.product.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /tycho/11_root_level_features/com.codeandme.tycho.product/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/11_root_level_features/com.codeandme.tycho.product/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/11_root_level_features/com.codeandme.tycho.product/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Tycho Product 4 | Bundle-SymbolicName: com.codeandme.tycho.product;singleton:=true 5 | Bundle-Version: 1.0.0.qualifier 6 | Bundle-Vendor: codeandme.blogspot.com 7 | Bundle-RequiredExecutionEnvironment: JavaSE-1.6 8 | -------------------------------------------------------------------------------- /tycho/11_root_level_features/com.codeandme.tycho.product/build.properties: -------------------------------------------------------------------------------- 1 | output.. = bin/ 2 | bin.includes = META-INF/,\ 3 | .,\ 4 | plugin.xml 5 | -------------------------------------------------------------------------------- /tycho/11_root_level_features/com.codeandme.tycho.releng.p2/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/11_root_level_features/com.codeandme.tycho.releng.p2/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/11_root_level_features/com.codeandme.tycho.releng.product/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/11_root_level_features/com.codeandme.tycho.releng.product/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/11_root_level_features/com.codeandme.tycho.releng.targetplatform/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/11_root_level_features/com.codeandme.tycho.releng/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/11_root_level_features/com.codeandme.tycho.releng/SampleCA.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/tycho/11_root_level_features/com.codeandme.tycho.releng/SampleCA.pfx -------------------------------------------------------------------------------- /tycho/11_root_level_features/com.codeandme.tycho.releng/blog.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/tycho/11_root_level_features/com.codeandme.tycho.releng/blog.keystore -------------------------------------------------------------------------------- /tycho/12_build_source_features/com.codeandme.tycho.plugin.feature/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/12_build_source_features/com.codeandme.tycho.plugin.feature/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/12_build_source_features/com.codeandme.tycho.plugin.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /tycho/12_build_source_features/com.codeandme.tycho.plugin.test/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/12_build_source_features/com.codeandme.tycho.plugin.test/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/12_build_source_features/com.codeandme.tycho.plugin.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /tycho/12_build_source_features/com.codeandme.tycho.plugin/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /target/ 3 | -------------------------------------------------------------------------------- /tycho/12_build_source_features/com.codeandme.tycho.plugin/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/12_build_source_features/com.codeandme.tycho.plugin/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /tycho/12_build_source_features/com.codeandme.tycho.product.feature/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/12_build_source_features/com.codeandme.tycho.product.feature/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/12_build_source_features/com.codeandme.tycho.product.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /tycho/12_build_source_features/com.codeandme.tycho.product/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/12_build_source_features/com.codeandme.tycho.product/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/12_build_source_features/com.codeandme.tycho.product/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Tycho Product 4 | Bundle-SymbolicName: com.codeandme.tycho.product;singleton:=true 5 | Bundle-Version: 1.0.0.qualifier 6 | Bundle-Vendor: codeandme.blogspot.com 7 | Bundle-RequiredExecutionEnvironment: JavaSE-1.6 8 | -------------------------------------------------------------------------------- /tycho/12_build_source_features/com.codeandme.tycho.product/build.properties: -------------------------------------------------------------------------------- 1 | output.. = bin/ 2 | bin.includes = META-INF/,\ 3 | .,\ 4 | plugin.xml 5 | -------------------------------------------------------------------------------- /tycho/12_build_source_features/com.codeandme.tycho.releng.p2.source/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/12_build_source_features/com.codeandme.tycho.releng.p2.source/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/12_build_source_features/com.codeandme.tycho.releng.p2.source/category.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /tycho/12_build_source_features/com.codeandme.tycho.releng.p2/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/12_build_source_features/com.codeandme.tycho.releng.p2/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/12_build_source_features/com.codeandme.tycho.releng.product/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/12_build_source_features/com.codeandme.tycho.releng.product/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/12_build_source_features/com.codeandme.tycho.releng.targetplatform/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/12_build_source_features/com.codeandme.tycho.releng/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/12_build_source_features/com.codeandme.tycho.releng/SampleCA.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/tycho/12_build_source_features/com.codeandme.tycho.releng/SampleCA.pfx -------------------------------------------------------------------------------- /tycho/12_build_source_features/com.codeandme.tycho.releng/blog.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/tycho/12_build_source_features/com.codeandme.tycho.releng/blog.keystore -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.help/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.help/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.help/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Tycho API Help 4 | Bundle-SymbolicName: com.codeandme.tycho.help;singleton:=true 5 | Bundle-Version: 1.0.0.qualifier 6 | Bundle-RequiredExecutionEnvironment: JavaSE-1.6 7 | Require-Bundle: org.eclipse.help 8 | -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.help/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = META-INF/,\ 2 | .,\ 3 | plugin.xml,\ 4 | help/ 5 | 6 | # for javadoc API generation: comma separated list of plug-ins 7 | jars.extra.classpath = platform:/plugin/com.codeandme.tycho.plugin 8 | -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.help/help/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.help/help/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.plugin.feature/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.plugin.feature/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.plugin.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.plugin.test/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.plugin.test/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.plugin.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.plugin/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /target/ 3 | -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.plugin/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.plugin/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.product.feature/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.product.feature/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.product.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml 2 | -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.product/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.product/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.product/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Tycho Product 4 | Bundle-SymbolicName: com.codeandme.tycho.product;singleton:=true 5 | Bundle-Version: 1.0.0.qualifier 6 | Bundle-Vendor: codeandme.blogspot.com 7 | Bundle-RequiredExecutionEnvironment: JavaSE-1.6 8 | -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.product/build.properties: -------------------------------------------------------------------------------- 1 | output.. = bin/ 2 | bin.includes = META-INF/,\ 3 | .,\ 4 | plugin.xml 5 | -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.releng.p2.source/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.releng.p2.source/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.releng.p2.source/category.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.releng.p2/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.releng.p2/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.releng.product/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.releng.product/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.releng.product/Tycho.p2.inf: -------------------------------------------------------------------------------- 1 | instructions.configure=\ 2 | org.eclipse.equinox.p2.touchpoint.eclipse.addRepository(type:0,location:http${#58}//download.eclipse.org/releases/mars,name:Mars);\ 3 | org.eclipse.equinox.p2.touchpoint.eclipse.addRepository(type:1,location:http${#58}//download.eclipse.org/releases/mars,name:Mars); 4 | 5 | -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.releng.targetplatform/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.releng/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.releng/SampleCA.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/tycho/13_generate_javadoc/com.codeandme.tycho.releng/SampleCA.pfx -------------------------------------------------------------------------------- /tycho/13_generate_javadoc/com.codeandme.tycho.releng/blog.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/tycho/13_generate_javadoc/com.codeandme.tycho.releng/blog.keystore -------------------------------------------------------------------------------- /ui/TableViewer DnD Sorting/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /ui/TableViewer DnD Sorting/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /welcome_page/com.codeandme.welcome/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /welcome_page/com.codeandme.welcome/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /welcome_page/com.codeandme.welcome/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/welcome_page/com.codeandme.welcome/images/logo.png -------------------------------------------------------------------------------- /welcome_page/com.codeandme.welcome/intro/css/graphics/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/welcome_page/com.codeandme.welcome/intro/css/graphics/sample.gif -------------------------------------------------------------------------------- /welcome_page/com.codeandme.welcome/intro/css/graphics/sample_hov.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pontesegger/codeandme/a81477df906899e11d0a237fba0754878318a244/welcome_page/com.codeandme.welcome/intro/css/graphics/sample_hov.gif -------------------------------------------------------------------------------- /welcome_page/com.codeandme.welcome/intro/css/sample.css: -------------------------------------------------------------------------------- 1 | 2 | a#comexamplewelcome-introLink img { background-image : url(graphics/sample.gif); } 3 | a#comexamplewelcome-introLink:hover img { background-image : url(graphics/sample_hov.gif); } -------------------------------------------------------------------------------- /welcome_page/com.codeandme.welcome/plugin_customization.ini: -------------------------------------------------------------------------------- 1 | org.eclipse.ui.intro/INTRO_THEME = org.eclipse.ui.intro.universal.slate 2 | org.eclipse.ui.intro.universal/INTRO_ROOT_PAGES = overview,tutorials,samples,whatsnew,webresources 3 | org.eclipse.ui/SHOW_PROGRESS_ON_STARTUP = false 4 | 5 | --------------------------------------------------------------------------------