├── org.eclipse.ui.forms.examples ├── .cvsignore ├── icons │ ├── nw.gif │ ├── clear.gif │ ├── help.gif │ ├── sample.gif │ ├── close_view.gif │ ├── file_obj.gif │ ├── help_topic.gif │ ├── newprj_wiz.gif │ ├── progress.gif │ ├── toc_closed.gif │ ├── toc_open.gif │ ├── form_banner.gif │ ├── large_image.gif │ ├── linkto_help.gif │ ├── th_vertical.gif │ ├── topic_small.gif │ ├── container_obj.gif │ ├── e_search_menu.gif │ └── th_horizontal.gif ├── .settings │ ├── org.eclipse.jdt.ui.prefs │ └── org.eclipse.pde.prefs ├── .classpath ├── src │ └── org │ │ └── eclipse │ │ └── ui │ │ └── forms │ │ └── examples │ │ └── internal │ │ └── ExamplesPluginResources.properties ├── plugin.properties ├── .project ├── META-INF │ └── MANIFEST.MF └── build.properties ├── org.eclipse.swtbot.eclipse.dsl.test ├── src │ └── removeMe.txt ├── .classpath ├── .settings │ └── org.eclipse.jdt.core.prefs ├── META-INF │ └── MANIFEST.MF ├── build.properties └── .project ├── org.eclipse.swtbot.generator ├── templates │ ├── SWTFormsBot │ │ ├── additionalMethods │ │ ├── javadoc │ │ └── imports │ └── SWTBot │ │ └── additionalMethods ├── widgets-forms.xml ├── .settings │ └── org.moreunit.prefs ├── .classpath ├── swtbot-eclipse-matchers.xml ├── META-INF │ └── MANIFEST.MF ├── build.properties └── .project ├── org.eclipse.swtbot.updatesite ├── site.template.footer.xml ├── site.template.header.xml ├── site.template.org.eclipse.swtbot.pluginarchivelist.xml ├── .project └── web │ └── site.css ├── org.eclipse.swtbot.swt.finder.test ├── src │ ├── com │ │ └── foo │ │ │ └── bar │ │ │ ├── BAZ.keyboard │ │ │ └── MAC_FOOBAR.keyboard │ └── org │ │ └── eclipse │ │ └── swtbot │ │ └── swt │ │ └── finder │ │ ├── keyboard │ │ └── empty.keyboard │ │ ├── UIThread.java │ │ ├── DummyTestDoNotExecuteInAnt.java │ │ └── matchers │ │ └── ObjectWithGetText.java ├── README.txt ├── .classpath ├── META-INF │ └── MANIFEST.MF ├── .project ├── .settings │ └── .api_filters └── build.properties ├── examples ├── rcp │ ├── org.rcpmail │ │ ├── splash.bmp │ │ ├── icons │ │ │ ├── mail.ico │ │ │ ├── sample.gif │ │ │ ├── sample.icns │ │ │ ├── sample2.gif │ │ │ └── sample3.gif │ │ ├── product_lg.gif │ │ ├── .classpath │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── .project │ │ └── build.properties │ └── org.rcpmail.test │ │ ├── .classpath │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── .project │ │ └── src │ │ └── org │ │ └── rcpmail │ │ └── AllTests.java └── gef │ ├── org.eclipse.gef.examples.logic │ ├── logic.gif │ ├── src │ │ └── org │ │ │ └── eclipse │ │ │ └── gef │ │ │ └── examples │ │ │ └── logicdesigner │ │ │ ├── icons │ │ │ ├── logic.gif │ │ │ ├── minus.gif │ │ │ ├── plus.gif │ │ │ ├── outline.gif │ │ │ ├── overview.gif │ │ │ └── logicbanner.gif │ │ │ ├── model │ │ │ ├── icons │ │ │ │ ├── can.gif │ │ │ │ ├── comp.gif │ │ │ │ ├── or16.gif │ │ │ │ ├── or24.gif │ │ │ │ ├── and16.gif │ │ │ │ ├── and24.gif │ │ │ │ ├── arrow16.gif │ │ │ │ ├── arrow24.gif │ │ │ │ ├── label16.gif │ │ │ │ ├── label24.gif │ │ │ │ ├── live16.gif │ │ │ │ ├── live24.gif │ │ │ │ ├── xor16.gif │ │ │ │ ├── xor24.gif │ │ │ │ ├── circuit16.gif │ │ │ │ ├── circuit24.gif │ │ │ │ ├── ground16.gif │ │ │ │ ├── ground24.gif │ │ │ │ ├── ledicon16.gif │ │ │ │ ├── ledicon24.gif │ │ │ │ ├── zoomminus.gif │ │ │ │ ├── zoomplus.gif │ │ │ │ ├── connection16.gif │ │ │ │ ├── connection24.gif │ │ │ │ ├── fulladder16.gif │ │ │ │ ├── fulladder24.gif │ │ │ │ ├── halfadder16.gif │ │ │ │ ├── halfadder24.gif │ │ │ │ ├── logicflow16.gif │ │ │ │ └── logicflow24.gif │ │ │ └── Gate.java │ │ │ └── figures │ │ │ └── icons │ │ │ ├── led0.gif │ │ │ ├── led1.gif │ │ │ ├── led2.gif │ │ │ ├── led3.gif │ │ │ ├── led4.gif │ │ │ ├── led5.gif │ │ │ ├── led6.gif │ │ │ ├── led7.gif │ │ │ ├── led8.gif │ │ │ ├── led9.gif │ │ │ ├── ledbg.gif │ │ │ ├── ledbgprim.gif │ │ │ └── ledbgsel.gif │ ├── .checkstyle │ ├── .classpath │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── .project │ └── build.properties │ └── org.eclipse.gef.examples.logic.test │ ├── src │ └── org │ │ └── eclipse │ │ └── gef │ │ └── examples │ │ └── logic │ │ └── test │ │ ├── unit │ │ └── LogicModeler.java │ │ └── messages │ │ └── eclipseUIMessages.properties │ ├── .classpath │ ├── build.properties │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ └── MANIFEST.MF │ └── .project ├── org.eclipse.swtbot.eclipse.ui ├── feature.gif ├── icons │ └── swtbot_runner.png ├── intro │ ├── css │ │ ├── graphics │ │ │ ├── icon.gif │ │ │ └── icon_hov.gif │ │ └── tutorial.css │ └── tutorialsExtensionContent.xml ├── src │ └── org │ │ └── eclipse │ │ └── swtbot │ │ └── eclipse │ │ └── ui │ │ ├── project │ │ ├── _build.properties │ │ ├── _MANIFEST.MF │ │ ├── _classpath │ │ └── _project │ │ └── wizards │ │ └── WizardPageSettings.java ├── .settings │ ├── org.moreunit.prefs │ └── org.eclipse.jdt.core.prefs ├── about.properties ├── about.ini ├── .classpath └── .project ├── org.eclipse.swtbot.releng ├── build-conf │ ├── win32.win32.x86.properties │ ├── linux.gtk.x86.properties │ ├── linux.gtk.ppc.properties │ ├── macosx.carbon.x86.properties │ ├── linux.gtk.x86_64.properties │ ├── macosx.cocoa.x86_64.properties │ ├── gef.properties │ ├── e36.properties │ └── e37.properties ├── host-conf │ ├── README.txt │ └── build.build.properties ├── cruise-mac.sh ├── build.default.properties ├── externals │ └── plugins │ │ ├── org.hamcrest_1.1.0.v20090501071000.jar │ │ ├── org.apache.log4j_1.2.13.v200903072027.jar │ │ ├── org.hamcrest.core_1.1.0.v20090501071000.jar │ │ ├── org.hamcrest.text_1.1.0.v20090501071000.jar │ │ ├── com.thoughtworks.qdox_1.6.3.v20081201-1400.jar │ │ ├── org.hamcrest.library_1.1.0.v20090501071000.jar │ │ ├── org.hamcrest.generator_1.1.0.v20090501071000.jar │ │ ├── org.hamcrest.core.source_1.1.0.v20090501071000.jar │ │ ├── org.hamcrest.integration_1.1.0.v20090501071000.jar │ │ ├── org.hamcrest.text.source_1.1.0.v20090501071000.jar │ │ ├── org.hamcrest.library.source_1.1.0.v20090501071000.jar │ │ ├── org.hamcrest.generator.source_1.1.0.v20090501071000.jar │ │ └── org.hamcrest.integration.source_1.1.0.v20090501071000.jar ├── .project ├── build.developer.properties.sample ├── conf │ └── fvwm-conf ├── javadoc │ └── junit-package-list │ │ └── package-list └── test-sandbox │ └── passFail.xsl ├── org.eclipse.swtbot.eclipse.spy ├── icons │ └── sample.gif ├── .classpath ├── .settings │ └── org.eclipse.jdt.core.prefs ├── plugin.xml └── .project ├── org.eclipse.swtbot.forms.finder ├── build.properties ├── .settings │ ├── org.moreunit.prefs │ └── org.eclipse.jdt.core.prefs ├── .classpath ├── .project └── META-INF │ └── MANIFEST.MF ├── org.eclipse.swtbot.forms.finder.test ├── build.properties ├── .classpath ├── .settings │ └── org.eclipse.jdt.core.prefs ├── META-INF │ └── MANIFEST.MF └── .project ├── org.eclipse.swtbot.eclipse.finder.test ├── icons │ └── sample.gif ├── .classpath ├── src │ └── org │ │ └── eclipse │ │ └── swtbot │ │ └── eclipse │ │ └── finder │ │ ├── test │ │ └── ui │ │ │ ├── perspectives │ │ │ └── FormPerspective.java │ │ │ └── views │ │ │ └── SWTBotFormView.java │ │ └── FinderTestIds.java ├── META-INF │ └── MANIFEST.MF ├── .project └── build.properties ├── org.eclipse.swt.examples ├── src │ ├── org │ │ └── eclipse │ │ │ └── swt │ │ │ └── examples │ │ │ ├── graphics │ │ │ ├── db.gif │ │ │ ├── swt.png │ │ │ ├── back.gif │ │ │ ├── cube.png │ │ │ ├── font.gif │ │ │ ├── help.gif │ │ │ ├── maze.bmp │ │ │ ├── next.gif │ │ │ ├── ovals.png │ │ │ ├── pause.gif │ │ │ ├── play.gif │ │ │ ├── swap.gif │ │ │ ├── task.gif │ │ │ ├── ace_club.jpg │ │ │ ├── home_nav.gif │ │ │ ├── houses.png │ │ │ ├── irmaos.jpg │ │ │ ├── pattern1.jpg │ │ │ ├── pattern2.jpg │ │ │ ├── pattern3.jpg │ │ │ ├── ace_hearts.jpg │ │ │ ├── ace_spade.jpg │ │ │ ├── alpha_img1.png │ │ │ ├── alpha_img2.png │ │ │ └── ace_diamond.jpg │ │ │ ├── texteditor │ │ │ ├── red.bmp │ │ │ ├── blue.bmp │ │ │ ├── bold.bmp │ │ │ ├── erase.bmp │ │ │ ├── green.bmp │ │ │ ├── italic.bmp │ │ │ ├── red_mask.bmp │ │ │ ├── blue_mask.bmp │ │ │ ├── bold_mask.bmp │ │ │ ├── erase_mask.bmp │ │ │ ├── green_mask.bmp │ │ │ ├── italic_mask.bmp │ │ │ ├── strikeout.bmp │ │ │ ├── underline.bmp │ │ │ ├── strikeout_mask.bmp │ │ │ └── underline_mask.bmp │ │ │ ├── hoverhelp │ │ │ ├── warning.gif │ │ │ └── information.gif │ │ │ ├── paint │ │ │ ├── fill_none.gif │ │ │ ├── fill_solid.gif │ │ │ ├── tool_line.gif │ │ │ ├── tool_pencil.gif │ │ │ ├── tool_text.gif │ │ │ ├── fill_outline.gif │ │ │ ├── linestyle_dot.gif │ │ │ ├── options_font.gif │ │ │ ├── tool_airbrush.gif │ │ │ ├── tool_ellipse.gif │ │ │ ├── tool_polyline.gif │ │ │ ├── linestyle_dash.gif │ │ │ ├── linestyle_solid.gif │ │ │ ├── tool_rectangle.gif │ │ │ ├── linestyle_dashdot.gif │ │ │ ├── tool_roundedrectangle.gif │ │ │ └── PaintTool.java │ │ │ ├── controlexample │ │ │ ├── bold.bmp │ │ │ ├── red.bmp │ │ │ ├── italic.bmp │ │ │ ├── target.gif │ │ │ ├── yellow.bmp │ │ │ ├── bold_mask.bmp │ │ │ ├── red_mask.bmp │ │ │ ├── strikeout.bmp │ │ │ ├── underline.bmp │ │ │ ├── closedFolder.gif │ │ │ ├── italic_mask.bmp │ │ │ ├── openFolder.gif │ │ │ ├── yellow_mask.bmp │ │ │ ├── strikeout_mask.bmp │ │ │ ├── underline_mask.bmp │ │ │ ├── backgroundImage.png │ │ │ └── parentBackgroundImage.png │ │ │ ├── fileviewer │ │ │ ├── cmd_Copy.gif │ │ │ ├── cmd_Cut.gif │ │ │ ├── cmd_Delete.gif │ │ │ ├── cmd_Parent.gif │ │ │ ├── cmd_Paste.gif │ │ │ ├── cmd_Print.gif │ │ │ ├── cmd_Refresh.gif │ │ │ ├── cmd_Rename.gif │ │ │ ├── cmd_Search.gif │ │ │ ├── icon_File.gif │ │ │ ├── generic_example.gif │ │ │ ├── icon_ClosedDrive.gif │ │ │ ├── icon_OpenDrive.gif │ │ │ ├── icon_OpenFolder.gif │ │ │ └── icon_ClosedFolder.gif │ │ │ ├── browserexample │ │ │ ├── document.gif │ │ │ ├── eclipse01.bmp │ │ │ ├── eclipse02.bmp │ │ │ ├── eclipse03.bmp │ │ │ ├── eclipse04.bmp │ │ │ ├── eclipse05.bmp │ │ │ ├── eclipse06.bmp │ │ │ ├── eclipse07.bmp │ │ │ ├── eclipse08.bmp │ │ │ ├── eclipse09.bmp │ │ │ ├── eclipse10.bmp │ │ │ ├── eclipse11.bmp │ │ │ └── eclipse12.bmp │ │ │ ├── clipboard │ │ │ └── MyType.java │ │ │ └── addressbook │ │ │ └── FindListener.java │ ├── examples_helloworld.properties │ ├── examples_javaviewer.properties │ └── examples_texteditor.properties ├── .classpath ├── .project └── build.properties ├── .git-svn-authors ├── org.eclipse.swtbot.swt.finder ├── src │ └── org │ │ └── eclipse │ │ └── swtbot │ │ └── swt │ │ └── finder │ │ ├── keyboard │ │ ├── DE_DE.keyboard │ │ ├── FR_FR.keyboard │ │ ├── EN_US.keyboard │ │ └── MAC_EN_US.keyboard │ │ └── results │ │ ├── BoolResult.java │ │ ├── IntResult.java │ │ ├── StringResult.java │ │ ├── ListResult.java │ │ ├── ArrayResult.java │ │ └── VoidResult.java ├── .settings │ ├── org.moreunit.prefs │ └── org.eclipse.jdt.core.prefs ├── .classpath ├── .project └── build.properties ├── org.eclipse.swtbot.go ├── .settings │ └── org.eclipse.pde.core.prefs ├── .project ├── build.properties └── META-INF │ └── MANIFEST.MF ├── coding-conventions └── codetemplates.xml ├── org.eclipse.swtbot.ant.optional.junit3 ├── .project ├── META-INF │ └── MANIFEST.MF └── build.properties ├── org.eclipse.swtbot.ant.optional.junit4 ├── .project ├── META-INF │ └── MANIFEST.MF └── build.properties ├── org.eclipse.swtbot.eclipse.dsl ├── .settings │ ├── org.moreunit.prefs │ └── org.eclipse.jdt.core.prefs ├── .classpath ├── build.properties ├── .project └── META-INF │ └── MANIFEST.MF ├── org.eclipse.swtbot.eclipse.finder ├── .settings │ ├── org.moreunit.prefs │ └── org.eclipse.jdt.core.prefs ├── .classpath └── build.properties ├── org.eclipse.swtbot.eclipse.test.junit3 ├── build.properties └── .project ├── org.eclipse.swtbot.eclipse.test.junit4 ├── build.properties └── .project ├── org.eclipse.swtbot.junit4_x ├── .classpath ├── .settings │ └── org.eclipse.jdt.core.prefs ├── META-INF │ └── MANIFEST.MF ├── build.properties └── .project ├── org.eclipse.swtbot.swt.demo ├── .classpath ├── META-INF │ └── MANIFEST.MF ├── .project └── build.properties ├── org.eclipse.swtbot.eclipse.core ├── .classpath ├── .settings │ └── org.eclipse.jdt.core.prefs ├── plugin.xml ├── META-INF │ └── MANIFEST.MF ├── .project └── build.properties ├── org.eclipse.swtbot.eclipse.gef.finder ├── .classpath └── .project ├── org.eclipse.swtbot.generator.test ├── .classpath ├── META-INF │ └── MANIFEST.MF ├── build.properties └── .project ├── org.eclipse.swtbot.eclipse.junit3.headless ├── .classpath ├── .settings │ └── org.eclipse.jdt.core.prefs ├── plugin.xml ├── .project ├── META-INF │ └── MANIFEST.MF └── build.properties ├── org.eclipse.swtbot.eclipse.junit4.headless ├── .classpath ├── .settings │ └── org.eclipse.jdt.core.prefs ├── plugin.xml ├── .project ├── META-INF │ └── MANIFEST.MF └── build.properties ├── org.eclipse.swtbot.eclipse.ui.test ├── META-INF │ └── MANIFEST.MF ├── .classpath ├── build.properties └── .project ├── org.eclipse.swtbot ├── .project └── build.properties ├── org.eclipse.swtbot.forms ├── .project └── build.properties ├── org.eclipse.swtbot.ide ├── .project └── build.properties ├── org.eclipse.swtbot.test ├── .project └── build.properties ├── org.eclipse.swtbot.eclipse ├── .project └── build.properties ├── org.eclipse.swtbot.eclipse.gef ├── .project └── build.properties └── tools ├── monitor.sh ├── version.rb ├── create_index_html.rb └── publish-build.sh /org.eclipse.ui.forms.examples/.cvsignore: -------------------------------------------------------------------------------- 1 | bin 2 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.dsl.test/src/removeMe.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.generator/templates/SWTFormsBot/additionalMethods: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.updatesite/site.template.footer.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.swt.finder.test/src/com/foo/bar/BAZ.keyboard: -------------------------------------------------------------------------------- 1 | # shift + t 2 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.swt.finder.test/src/com/foo/bar/MAC_FOOBAR.keyboard: -------------------------------------------------------------------------------- 1 | * shift + Y 2 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.swt.finder.test/src/org/eclipse/swtbot/swt/finder/keyboard/empty.keyboard: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rcp/org.rcpmail/splash.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/rcp/org.rcpmail/splash.bmp -------------------------------------------------------------------------------- /examples/rcp/org.rcpmail/icons/mail.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/rcp/org.rcpmail/icons/mail.ico -------------------------------------------------------------------------------- /examples/rcp/org.rcpmail/product_lg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/rcp/org.rcpmail/product_lg.gif -------------------------------------------------------------------------------- /examples/rcp/org.rcpmail/icons/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/rcp/org.rcpmail/icons/sample.gif -------------------------------------------------------------------------------- /examples/rcp/org.rcpmail/icons/sample.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/rcp/org.rcpmail/icons/sample.icns -------------------------------------------------------------------------------- /examples/rcp/org.rcpmail/icons/sample2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/rcp/org.rcpmail/icons/sample2.gif -------------------------------------------------------------------------------- /examples/rcp/org.rcpmail/icons/sample3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/rcp/org.rcpmail/icons/sample3.gif -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.ui/feature.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swtbot.eclipse.ui/feature.gif -------------------------------------------------------------------------------- /org.eclipse.swtbot.releng/build-conf/win32.win32.x86.properties: -------------------------------------------------------------------------------- 1 | eclipse.sdk.archive = eclipse-SDK-${eclipse.buildId}-win32.zip 2 | -------------------------------------------------------------------------------- /org.eclipse.ui.forms.examples/icons/nw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.ui.forms.examples/icons/nw.gif -------------------------------------------------------------------------------- /org.eclipse.swtbot.releng/build-conf/linux.gtk.x86.properties: -------------------------------------------------------------------------------- 1 | eclipse.sdk.archive = eclipse-SDK-${eclipse.buildId}-linux-gtk.tar.gz 2 | -------------------------------------------------------------------------------- /org.eclipse.ui.forms.examples/icons/clear.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.ui.forms.examples/icons/clear.gif -------------------------------------------------------------------------------- /org.eclipse.ui.forms.examples/icons/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.ui.forms.examples/icons/help.gif -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.spy/icons/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swtbot.eclipse.spy/icons/sample.gif -------------------------------------------------------------------------------- /org.eclipse.swtbot.forms.finder/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.releng/build-conf/linux.gtk.ppc.properties: -------------------------------------------------------------------------------- 1 | eclipse.sdk.archive = eclipse-SDK-${eclipse.buildId}-linux-gtk-ppc.tar.gz 2 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.releng/build-conf/macosx.carbon.x86.properties: -------------------------------------------------------------------------------- 1 | eclipse.sdk.archive = eclipse-SDK-${eclipse.buildId}-macosx-carbon.tar.gz 2 | -------------------------------------------------------------------------------- /org.eclipse.ui.forms.examples/icons/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.ui.forms.examples/icons/sample.gif -------------------------------------------------------------------------------- /org.eclipse.swtbot.forms.finder.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.releng/build-conf/linux.gtk.x86_64.properties: -------------------------------------------------------------------------------- 1 | eclipse.sdk.archive = eclipse-SDK-${eclipse.buildId}-linux-gtk-x86_64.tar.gz 2 | -------------------------------------------------------------------------------- /org.eclipse.ui.forms.examples/icons/close_view.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.ui.forms.examples/icons/close_view.gif -------------------------------------------------------------------------------- /org.eclipse.ui.forms.examples/icons/file_obj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.ui.forms.examples/icons/file_obj.gif -------------------------------------------------------------------------------- /org.eclipse.ui.forms.examples/icons/help_topic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.ui.forms.examples/icons/help_topic.gif -------------------------------------------------------------------------------- /org.eclipse.ui.forms.examples/icons/newprj_wiz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.ui.forms.examples/icons/newprj_wiz.gif -------------------------------------------------------------------------------- /org.eclipse.ui.forms.examples/icons/progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.ui.forms.examples/icons/progress.gif -------------------------------------------------------------------------------- /org.eclipse.ui.forms.examples/icons/toc_closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.ui.forms.examples/icons/toc_closed.gif -------------------------------------------------------------------------------- /org.eclipse.ui.forms.examples/icons/toc_open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.ui.forms.examples/icons/toc_open.gif -------------------------------------------------------------------------------- /org.eclipse.swtbot.releng/build-conf/macosx.cocoa.x86_64.properties: -------------------------------------------------------------------------------- 1 | eclipse.sdk.archive = eclipse-SDK-${eclipse.buildId}-macosx-cocoa-x86_64.tar.gz 2 | -------------------------------------------------------------------------------- /org.eclipse.ui.forms.examples/icons/form_banner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.ui.forms.examples/icons/form_banner.gif -------------------------------------------------------------------------------- /org.eclipse.ui.forms.examples/icons/large_image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.ui.forms.examples/icons/large_image.gif -------------------------------------------------------------------------------- /org.eclipse.ui.forms.examples/icons/linkto_help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.ui.forms.examples/icons/linkto_help.gif -------------------------------------------------------------------------------- /org.eclipse.ui.forms.examples/icons/th_vertical.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.ui.forms.examples/icons/th_vertical.gif -------------------------------------------------------------------------------- /org.eclipse.ui.forms.examples/icons/topic_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.ui.forms.examples/icons/topic_small.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/logic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/logic.gif -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.finder.test/icons/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swtbot.eclipse.finder.test/icons/sample.gif -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.ui/icons/swtbot_runner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swtbot.eclipse.ui/icons/swtbot_runner.png -------------------------------------------------------------------------------- /org.eclipse.ui.forms.examples/icons/container_obj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.ui.forms.examples/icons/container_obj.gif -------------------------------------------------------------------------------- /org.eclipse.ui.forms.examples/icons/e_search_menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.ui.forms.examples/icons/e_search_menu.gif -------------------------------------------------------------------------------- /org.eclipse.ui.forms.examples/icons/th_horizontal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.ui.forms.examples/icons/th_horizontal.gif -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.ui/intro/css/graphics/icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swtbot.eclipse.ui/intro/css/graphics/icon.gif -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.ui/intro/css/graphics/icon_hov.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swtbot.eclipse.ui/intro/css/graphics/icon_hov.gif -------------------------------------------------------------------------------- /org.eclipse.swtbot.releng/host-conf/README.txt: -------------------------------------------------------------------------------- 1 | This folder contains configurations specific to some of the build serves on the cruise grid that builds and tests SWTBot 2 | -------------------------------------------------------------------------------- /org.eclipse.ui.forms.examples/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- 1 | #Mon May 16 16:39:49 EDT 2005 2 | eclipse.preferences.version=1 3 | internal.default.compliance=default 4 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.releng/cruise-mac.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Home 4 | eval exec ant cruise 5 | 6 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.updatesite/site.template.header.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The SWTBot Update site. 5 | 6 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.ui/src/org/eclipse/swtbot/eclipse/ui/project/_build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/db.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/db.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/swt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/swt.png -------------------------------------------------------------------------------- /.git-svn-authors: -------------------------------------------------------------------------------- 1 | kpadegaonka = Ketan Padegaonkar 2 | mchauvin = Mariot Chauvin 3 | caniszczyk = Chris Aniszczyk 4 | -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/back.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/cube.png -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/font.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/font.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/help.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/maze.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/maze.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/next.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/ovals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/ovals.png -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/pause.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/pause.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/play.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/play.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/swap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/swap.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/task.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/task.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/red.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/red.bmp -------------------------------------------------------------------------------- /org.eclipse.swtbot.releng/build.default.properties: -------------------------------------------------------------------------------- 1 | update-site-location = ${basedir}/artifacts/update-site 2 | 3 | eclipse.3.4.location = ${basedir}/eclipse 4 | 5 | has.archives = false 6 | -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/ace_club.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/ace_club.jpg -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/home_nav.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/home_nav.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/houses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/houses.png -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/irmaos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/irmaos.jpg -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/pattern1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/pattern1.jpg -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/pattern2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/pattern2.jpg -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/pattern3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/pattern3.jpg -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/hoverhelp/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/hoverhelp/warning.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/fill_none.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/fill_none.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/fill_solid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/fill_solid.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/tool_line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/tool_line.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/tool_pencil.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/tool_pencil.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/tool_text.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/tool_text.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/blue.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/blue.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/bold.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/bold.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/erase.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/erase.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/green.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/green.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/italic.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/italic.bmp -------------------------------------------------------------------------------- /org.eclipse.swtbot.generator/templates/SWTBot/additionalMethods: -------------------------------------------------------------------------------- 1 | private Matcher withLabel(String label) { 2 | return WidgetMatcherFactory.withLabel(label, finder); 3 | } 4 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.updatesite/site.template.org.eclipse.swtbot.pluginarchivelist.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/bold.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/bold.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/red.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/red.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/cmd_Copy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/cmd_Copy.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/cmd_Cut.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/cmd_Cut.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/ace_hearts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/ace_hearts.jpg -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/ace_spade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/ace_spade.jpg -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/alpha_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/alpha_img1.png -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/alpha_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/alpha_img2.png -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/fill_outline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/fill_outline.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/linestyle_dot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/linestyle_dot.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/options_font.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/options_font.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/tool_airbrush.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/tool_airbrush.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/tool_ellipse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/tool_ellipse.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/tool_polyline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/tool_polyline.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/red_mask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/red_mask.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/italic.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/italic.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/target.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/target.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/yellow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/yellow.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/cmd_Delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/cmd_Delete.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/cmd_Parent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/cmd_Parent.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/cmd_Paste.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/cmd_Paste.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/cmd_Print.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/cmd_Print.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/cmd_Refresh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/cmd_Refresh.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/cmd_Rename.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/cmd_Rename.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/cmd_Search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/cmd_Search.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/icon_File.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/icon_File.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/ace_diamond.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/ace_diamond.jpg -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/hoverhelp/information.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/hoverhelp/information.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/linestyle_dash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/linestyle_dash.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/linestyle_solid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/linestyle_solid.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/tool_rectangle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/tool_rectangle.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/blue_mask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/blue_mask.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/bold_mask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/bold_mask.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/erase_mask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/erase_mask.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/green_mask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/green_mask.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/italic_mask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/italic_mask.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/strikeout.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/strikeout.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/underline.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/underline.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/browserexample/document.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/browserexample/document.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/browserexample/eclipse01.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/browserexample/eclipse01.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/browserexample/eclipse02.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/browserexample/eclipse02.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/browserexample/eclipse03.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/browserexample/eclipse03.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/browserexample/eclipse04.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/browserexample/eclipse04.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/browserexample/eclipse05.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/browserexample/eclipse05.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/browserexample/eclipse06.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/browserexample/eclipse06.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/browserexample/eclipse07.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/browserexample/eclipse07.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/browserexample/eclipse08.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/browserexample/eclipse08.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/browserexample/eclipse09.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/browserexample/eclipse09.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/browserexample/eclipse10.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/browserexample/eclipse10.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/browserexample/eclipse11.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/browserexample/eclipse11.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/browserexample/eclipse12.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/browserexample/eclipse12.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/bold_mask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/bold_mask.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/red_mask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/red_mask.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/strikeout.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/strikeout.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/underline.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/underline.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/linestyle_dashdot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/linestyle_dashdot.gif -------------------------------------------------------------------------------- /org.eclipse.swtbot.releng/externals/plugins/org.hamcrest_1.1.0.v20090501071000.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swtbot.releng/externals/plugins/org.hamcrest_1.1.0.v20090501071000.jar -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/closedFolder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/closedFolder.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/italic_mask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/italic_mask.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/openFolder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/openFolder.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/yellow_mask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/yellow_mask.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/generic_example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/generic_example.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/icon_ClosedDrive.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/icon_ClosedDrive.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/icon_OpenDrive.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/icon_OpenDrive.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/icon_OpenFolder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/icon_OpenFolder.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/tool_roundedrectangle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/tool_roundedrectangle.gif -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/strikeout_mask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/strikeout_mask.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/underline_mask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/underline_mask.bmp -------------------------------------------------------------------------------- /org.eclipse.swtbot.generator/templates/SWTFormsBot/javadoc: -------------------------------------------------------------------------------- 1 | /** 2 | * SWTFormsBot is a {@link SWTBot} with capabilities for testing eclipse forms. 3 | * 4 | * @see {@link SWTBot} - SWTBot for usage examples. 5 | */ -------------------------------------------------------------------------------- /org.eclipse.swtbot.releng/externals/plugins/org.apache.log4j_1.2.13.v200903072027.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swtbot.releng/externals/plugins/org.apache.log4j_1.2.13.v200903072027.jar -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/strikeout_mask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/strikeout_mask.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/underline_mask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/underline_mask.bmp -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/icon_ClosedFolder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/fileviewer/icon_ClosedFolder.gif -------------------------------------------------------------------------------- /org.eclipse.swtbot.releng/externals/plugins/org.hamcrest.core_1.1.0.v20090501071000.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swtbot.releng/externals/plugins/org.hamcrest.core_1.1.0.v20090501071000.jar -------------------------------------------------------------------------------- /org.eclipse.swtbot.releng/externals/plugins/org.hamcrest.text_1.1.0.v20090501071000.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swtbot.releng/externals/plugins/org.hamcrest.text_1.1.0.v20090501071000.jar -------------------------------------------------------------------------------- /org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/keyboard/DE_DE.keyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/keyboard/DE_DE.keyboard -------------------------------------------------------------------------------- /org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/keyboard/FR_FR.keyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/keyboard/FR_FR.keyboard -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/backgroundImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/backgroundImage.png -------------------------------------------------------------------------------- /org.eclipse.swtbot.go/.settings/org.eclipse.pde.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Apr 08 19:06:32 PDT 2010 2 | eclipse.preferences.version=1 3 | pluginProject.equinox=false 4 | pluginProject.extensions=false 5 | resolve.requirebundle=false 6 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.releng/externals/plugins/com.thoughtworks.qdox_1.6.3.v20081201-1400.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swtbot.releng/externals/plugins/com.thoughtworks.qdox_1.6.3.v20081201-1400.jar -------------------------------------------------------------------------------- /org.eclipse.swtbot.releng/externals/plugins/org.hamcrest.library_1.1.0.v20090501071000.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swtbot.releng/externals/plugins/org.hamcrest.library_1.1.0.v20090501071000.jar -------------------------------------------------------------------------------- /org.eclipse.swtbot.releng/externals/plugins/org.hamcrest.generator_1.1.0.v20090501071000.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swtbot.releng/externals/plugins/org.hamcrest.generator_1.1.0.v20090501071000.jar -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/parentBackgroundImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/parentBackgroundImage.png -------------------------------------------------------------------------------- /org.eclipse.swtbot.generator/widgets-forms.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.releng/externals/plugins/org.hamcrest.core.source_1.1.0.v20090501071000.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swtbot.releng/externals/plugins/org.hamcrest.core.source_1.1.0.v20090501071000.jar -------------------------------------------------------------------------------- /org.eclipse.swtbot.releng/externals/plugins/org.hamcrest.integration_1.1.0.v20090501071000.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swtbot.releng/externals/plugins/org.hamcrest.integration_1.1.0.v20090501071000.jar -------------------------------------------------------------------------------- /org.eclipse.swtbot.releng/externals/plugins/org.hamcrest.text.source_1.1.0.v20090501071000.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swtbot.releng/externals/plugins/org.hamcrest.text.source_1.1.0.v20090501071000.jar -------------------------------------------------------------------------------- /org.eclipse.swtbot.releng/externals/plugins/org.hamcrest.library.source_1.1.0.v20090501071000.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swtbot.releng/externals/plugins/org.hamcrest.library.source_1.1.0.v20090501071000.jar -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.ui/intro/css/tutorial.css: -------------------------------------------------------------------------------- 1 | 2 | a#orgeclipseswtboteclipseui-introLink img { background-image : url(graphics/icon.gif); } 3 | a#orgeclipseswtboteclipseui-introLink:hover img { background-image : url(graphics/icon_hov.gif); } -------------------------------------------------------------------------------- /org.eclipse.swtbot.releng/externals/plugins/org.hamcrest.generator.source_1.1.0.v20090501071000.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swtbot.releng/externals/plugins/org.hamcrest.generator.source_1.1.0.v20090501071000.jar -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/icons/logic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/icons/logic.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/icons/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/icons/minus.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/icons/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/icons/plus.gif -------------------------------------------------------------------------------- /org.eclipse.swtbot.releng/externals/plugins/org.hamcrest.integration.source_1.1.0.v20090501071000.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/org.eclipse.swtbot.releng/externals/plugins/org.hamcrest.integration.source_1.1.0.v20090501071000.jar -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/icons/outline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/icons/outline.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/icons/overview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/icons/overview.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/can.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/can.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/comp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/comp.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/or16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/or16.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/or24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/or24.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/figures/icons/led0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/figures/icons/led0.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/figures/icons/led1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/figures/icons/led1.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/figures/icons/led2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/figures/icons/led2.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/figures/icons/led3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/figures/icons/led3.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/figures/icons/led4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/figures/icons/led4.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/figures/icons/led5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/figures/icons/led5.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/figures/icons/led6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/figures/icons/led6.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/figures/icons/led7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/figures/icons/led7.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/figures/icons/led8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/figures/icons/led8.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/figures/icons/led9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/figures/icons/led9.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/figures/icons/ledbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/figures/icons/ledbg.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/icons/logicbanner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/icons/logicbanner.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/and16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/and16.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/and24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/and24.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/arrow16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/arrow16.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/arrow24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/arrow24.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/label16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/label16.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/label24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/label24.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/live16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/live16.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/live24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/live24.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/xor16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/xor16.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/xor24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/xor24.gif -------------------------------------------------------------------------------- /org.eclipse.swtbot.releng/host-conf/build.build.properties: -------------------------------------------------------------------------------- 1 | #properties file for eclipse build server 2 | os = linux 3 | ws = gtk 4 | arch = ppc 5 | 6 | eclipse.version = 35 7 | 8 | has.archives = false 9 | update-site-location = artifacts/update-site 10 | -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/circuit16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/circuit16.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/circuit24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/circuit24.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/ground16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/ground16.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/ground24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/ground24.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/ledicon16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/ledicon16.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/ledicon24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/ledicon24.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/zoomminus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/zoomminus.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/zoomplus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/zoomplus.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/figures/icons/ledbgprim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/figures/icons/ledbgprim.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/figures/icons/ledbgsel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/figures/icons/ledbgsel.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/connection16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/connection16.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/connection24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/connection24.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/fulladder16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/fulladder16.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/fulladder24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/fulladder24.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/halfadder16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/halfadder16.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/halfadder24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/halfadder24.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/logicflow16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/logicflow16.gif -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/logicflow24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ketan/SWTBot/HEAD/examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/icons/logicflow24.gif -------------------------------------------------------------------------------- /org.eclipse.swtbot.releng/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.swtbot.releng 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /coding-conventions/codetemplates.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.releng/build.developer.properties.sample: -------------------------------------------------------------------------------- 1 | # see http://archive.eclipse.org/eclipse/downloads/drops/R-3.3-200706251500/srcIncludedBuildInstructions.html#build_platforms for valid values 2 | 3 | os = macosx 4 | ws = cocoa 5 | arch = x86_64 6 | 7 | # provide 35, 36 or 37 8 | eclipse.version = 37 9 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.ant.optional.junit3/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.swtbot.ant.optional.junit3 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.ant.optional.junit4/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.swtbot.ant.optional.junit4 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.generator/.settings/org.moreunit.prefs: -------------------------------------------------------------------------------- 1 | #Wed Dec 31 22:50:31 IST 2008 2 | eclipse.preferences.version=1 3 | org.moreunit.flexiblenaming=true 4 | org.moreunit.prefixes= 5 | org.moreunit.unitsourcefolder=org.eclipse.swtbot.generator\:src\:org.eclipse.swtbot.generator.test\:src 6 | org.moreunit.useprojectsettings=true 7 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.releng/build-conf/gef.properties: -------------------------------------------------------------------------------- 1 | 2 | # the url for the gef sdk, without a trailing slash 3 | eclipse.gef.sdk.url = http://archive.eclipse.org/tools/gef/downloads/drops/R-3.4.2-200902171642 4 | 5 | # the name of the sdk archive to download from the url above 6 | eclipse.gef.sdk.archive = GEF-runtime-3.4.2.zip 7 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.releng/conf/fvwm-conf: -------------------------------------------------------------------------------- 1 | Style * DecorateTransient, NoPPosition, IconBox 20 20 100 -15, IconGrid 3 3, IconFill left top 2 | Style * SloppyFocus, MouseFocusClickRaises, TileCascadePlacement, WindowShadeSteps 20 3 | Style * GrabFocusOff, NoIconTitle, !AllowMaximizeFixedSize, FPReleaseFocus, IndexedIconName 4 | 5 | 6 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.ui/.settings/org.moreunit.prefs: -------------------------------------------------------------------------------- 1 | #Tue Dec 30 21:55:00 IST 2008 2 | eclipse.preferences.version=1 3 | org.moreunit.flexiblenaming=true 4 | org.moreunit.prefixes= 5 | org.moreunit.unitsourcefolder=org.eclipse.swtbot.eclipse.ui\:src\:org.eclipse.swtbot.eclipse.ui.test\:src 6 | org.moreunit.useprojectsettings=true 7 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.swt.finder/.settings/org.moreunit.prefs: -------------------------------------------------------------------------------- 1 | #Wed Dec 31 22:50:42 IST 2008 2 | eclipse.preferences.version=1 3 | org.moreunit.flexiblenaming=true 4 | org.moreunit.prefixes= 5 | org.moreunit.unitsourcefolder=org.eclipse.swtbot.swt.finder\:src\:org.eclipse.swtbot.swt.finder.test\:src 6 | org.moreunit.useprojectsettings=true 7 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.dsl/.settings/org.moreunit.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jan 13 09:05:17 IST 2009 2 | eclipse.preferences.version=1 3 | org.moreunit.flexiblenaming=true 4 | org.moreunit.prefixes= 5 | org.moreunit.unitsourcefolder=org.eclipse.swtbot.eclipse.dsl\:src\:org.eclipse.swtbot.eclipse.dsl.test\:src 6 | org.moreunit.useprojectsettings=true 7 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.forms.finder/.settings/org.moreunit.prefs: -------------------------------------------------------------------------------- 1 | #Tue Mar 01 21:55:27 PST 2011 2 | eclipse.preferences.version=1 3 | org.moreunit.prefixes= 4 | org.moreunit.test_type=junit4 5 | org.moreunit.unitsourcefolder=org.eclipse.swtbot.forms.finder\:src\:org.eclipse.swtbot.forms.finder.test\:src 6 | org.moreunit.useprojectsettings=true 7 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.finder/.settings/org.moreunit.prefs: -------------------------------------------------------------------------------- 1 | #Sat Dec 27 12:46:08 IST 2008 2 | eclipse.preferences.version=1 3 | org.moreunit.flexiblenaming=true 4 | org.moreunit.prefixes= 5 | org.moreunit.unitsourcefolder=org.eclipse.swtbot.eclipse.finder\:src\:org.eclipse.swtbot.eclipse.finder.test\:src 6 | org.moreunit.useprojectsettings=true 7 | -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/.checkstyle: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic.test/src/org/eclipse/gef/examples/logic/test/unit/LogicModeler.java: -------------------------------------------------------------------------------- 1 | package org.eclipse.gef.examples.logic.test.unit; 2 | 3 | public interface LogicModeler { 4 | 5 | String TOOL_LABEL = "Label"; 6 | 7 | String TOOL_CONNECTION = "Connection"; 8 | 9 | String TOOL_CIRCUIT = "Circuit"; 10 | 11 | String TOOL_OR_GATE = "Or Gate"; 12 | 13 | } 14 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.test.junit3/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml,\ 2 | license.html,\ 3 | epl-v10.html,\ 4 | feature.properties 5 | src.includes = license.html,\ 6 | feature.xml,\ 7 | epl-v10.html,\ 8 | build.properties,\ 9 | .project,\ 10 | feature.properties 11 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.test.junit4/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml,\ 2 | license.html,\ 3 | epl-v10.html,\ 4 | feature.properties 5 | src.includes = license.html,\ 6 | feature.xml,\ 7 | epl-v10.html,\ 8 | build.properties,\ 9 | .project,\ 10 | feature.properties 11 | -------------------------------------------------------------------------------- /examples/rcp/org.rcpmail/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.eclipse.swt.examples/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.junit4_x/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.swt.demo/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/rcp/org.rcpmail.test/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.core/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.dsl/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.spy/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.ui/src/org/eclipse/swtbot/eclipse/ui/project/_MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: @PLUGIN_NAME@ 4 | Bundle-SymbolicName: @PLUGIN_ID@;singleton:=true 5 | Bundle-Version: @PLUGIN_VERSION@ 6 | Bundle-ActivationPolicy: lazy 7 | Bundle-Vendor: @PLUGIN_PROVIDER@ 8 | Bundle-RequiredExecutionEnvironment: J2SE-1.5 9 | Require-Bundle: org.eclipse.swtbot.go 10 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.forms.finder/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.generator/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.eclipse.ui.forms.examples/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.dsl.test/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.gef.finder/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.forms.finder.test/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.generator.test/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.swt.finder.test/src/org/eclipse/swtbot/swt/finder/UIThread.java: -------------------------------------------------------------------------------- 1 | package org.eclipse.swtbot.swt.finder; 2 | 3 | import java.lang.annotation.ElementType; 4 | import java.lang.annotation.Retention; 5 | import java.lang.annotation.RetentionPolicy; 6 | import java.lang.annotation.Target; 7 | 8 | @Retention(RetentionPolicy.RUNTIME) 9 | @Target(ElementType.METHOD) 10 | public @interface UIThread { 11 | 12 | } 13 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.finder.test/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.junit3.headless/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.junit4.headless/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.ui.test/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: SWTBot Eclipse Ui Test Plug-in 4 | Bundle-SymbolicName: org.eclipse.swtbot.eclipse.ui.test 5 | Bundle-Version: 2.0.5.qualifier 6 | Bundle-Vendor: Eclipse.org - SWTBot 7 | Bundle-RequiredExecutionEnvironment: J2SE-1.5 8 | Fragment-Host: org.eclipse.swtbot.eclipse.ui 9 | Require-Bundle: org.eclipse.swtbot.go 10 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.generator/swtbot-eclipse-matchers.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic.test/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.ant.optional.junit4/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Headless Ant support for JUnit4 4 | Bundle-SymbolicName: org.eclipse.swtbot.ant.optional.junit4 5 | Bundle-Version: 2.0.5.qualifier 6 | Fragment-Host: org.apache.ant 7 | Bundle-Localization: plugin 8 | Require-Bundle: org.eclipse.core.runtime.compatibility, 9 | org.junit4 10 | Bundle-Vendor: Eclipse.org - SWTBot 11 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.generator.test/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Generator Test Plug-in (incubation) 4 | Bundle-SymbolicName: org.eclipse.swtbot.generator.test 5 | Bundle-Version: 2.0.5.qualifier 6 | Bundle-RequiredExecutionEnvironment: J2SE-1.5 7 | Require-Bundle: org.eclipse.swtbot.swt.finder, 8 | org.hamcrest, 9 | org.junit4, 10 | org.eclipse.swtbot.generator, 11 | org.eclipse.ui 12 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.ui/about.properties: -------------------------------------------------------------------------------- 1 | aboutBlurb=SWTBot\n\ 2 | \n\ 3 | SWTBot is a testing tool for SWT and Eclipe based applications\n\ 4 | Visit http://eclipse.org/swtbot/\n\ 5 | \n\ 6 | This product includes software from Hamcrest (http://hamcrest.googlecode.com/)\n\ 7 | \n\ 8 | This product includes software from the Apache Foundation. (http://apache.org/)\n\ 9 | Copyright (c) 2008-2009 Ketan Padegaonkar and others. All rights reserved. 10 | -------------------------------------------------------------------------------- /examples/rcp/org.rcpmail/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Rcpmail Plug-in (incubation) 4 | Bundle-SymbolicName: org.rcpmail; singleton:=true 5 | Bundle-Version: 1.0.0 6 | Bundle-Activator: org.rcpmail.Activator 7 | Require-Bundle: org.eclipse.ui, 8 | org.eclipse.core.runtime 9 | Bundle-ActivationPolicy: lazy 10 | Bundle-RequiredExecutionEnvironment: J2SE-1.5 11 | Bundle-Vendor: Eclipse.org - SWTBot 12 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.ui/src/org/eclipse/swtbot/eclipse/ui/project/_classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/rcp/org.rcpmail/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Dec 16 23:22:29 IST 2008 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 5 | org.eclipse.jdt.core.compiler.compliance=1.5 6 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 7 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 8 | org.eclipse.jdt.core.compiler.source=1.5 9 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.junit4_x/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Feb 03 01:22:08 IST 2009 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 5 | org.eclipse.jdt.core.compiler.compliance=1.5 6 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 7 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 8 | org.eclipse.jdt.core.compiler.source=1.5 9 | -------------------------------------------------------------------------------- /examples/rcp/org.rcpmail.test/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Dec 16 23:22:26 IST 2008 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 5 | org.eclipse.jdt.core.compiler.compliance=1.5 6 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 7 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 8 | org.eclipse.jdt.core.compiler.source=1.5 9 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.core/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Dec 18 01:12:33 IST 2008 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 5 | org.eclipse.jdt.core.compiler.compliance=1.5 6 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 7 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 8 | org.eclipse.jdt.core.compiler.source=1.5 9 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.dsl/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jan 13 09:05:29 IST 2009 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 5 | org.eclipse.jdt.core.compiler.compliance=1.5 6 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 7 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 8 | org.eclipse.jdt.core.compiler.source=1.5 9 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.spy/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Dec 16 23:22:48 IST 2008 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 5 | org.eclipse.jdt.core.compiler.compliance=1.5 6 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 7 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 8 | org.eclipse.jdt.core.compiler.source=1.5 9 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.ui/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Dec 16 23:22:44 IST 2008 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 5 | org.eclipse.jdt.core.compiler.compliance=1.5 6 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 7 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 8 | org.eclipse.jdt.core.compiler.source=1.5 9 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.forms.finder/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Mon May 03 03:39:51 CDT 2010 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 5 | org.eclipse.jdt.core.compiler.compliance=1.5 6 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 7 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 8 | org.eclipse.jdt.core.compiler.source=1.5 9 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.swt.finder/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Dec 16 23:22:38 IST 2008 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 5 | org.eclipse.jdt.core.compiler.compliance=1.5 6 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 7 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 8 | org.eclipse.jdt.core.compiler.source=1.5 9 | -------------------------------------------------------------------------------- /org.eclipse.swtbot/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.swtbot 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /org.eclipse.ui.forms.examples/.settings/org.eclipse.pde.prefs: -------------------------------------------------------------------------------- 1 | #Mon May 16 16:39:49 EDT 2005 2 | compilers.p.deprecated=1 3 | compilers.p.no-required-att=0 4 | compilers.p.not-externalized-att=2 5 | compilers.p.unknown-attribute=0 6 | compilers.p.unknown-class=0 7 | compilers.p.unknown-element=1 8 | compilers.p.unknown-resource=0 9 | compilers.p.unresolved-ex-points=0 10 | compilers.p.unresolved-import=0 11 | compilers.use-project=true 12 | eclipse.preferences.version=1 13 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.ant.optional.junit3/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Headless Ant support for JUnit3 (deprecated), use JUnit4 instead. 4 | Bundle-SymbolicName: org.eclipse.swtbot.ant.optional.junit3 5 | Bundle-Version: 2.0.5.qualifier 6 | Fragment-Host: org.apache.ant 7 | Bundle-Localization: plugin 8 | Require-Bundle: org.eclipse.core.runtime.compatibility, 9 | org.junit 10 | Bundle-Vendor: Eclipse.org - SWTBot 11 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.core/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 9 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.dsl.test/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jan 13 09:06:46 IST 2009 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 5 | org.eclipse.jdt.core.compiler.compliance=1.5 6 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 7 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 8 | org.eclipse.jdt.core.compiler.source=1.5 9 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.finder/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Dec 16 23:22:52 IST 2008 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 5 | org.eclipse.jdt.core.compiler.compliance=1.5 6 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 7 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 8 | org.eclipse.jdt.core.compiler.source=1.5 9 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.ui.test/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.forms.finder.test/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Mar 01 22:21:58 PST 2011 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 5 | org.eclipse.jdt.core.compiler.compliance=1.5 6 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 7 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 8 | org.eclipse.jdt.core.compiler.source=1.5 9 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.junit3.headless/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Dec 16 23:22:49 IST 2008 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 5 | org.eclipse.jdt.core.compiler.compliance=1.5 6 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 7 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 8 | org.eclipse.jdt.core.compiler.source=1.5 9 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.junit4.headless/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Dec 16 23:22:49 IST 2008 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 5 | org.eclipse.jdt.core.compiler.compliance=1.5 6 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 7 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 8 | org.eclipse.jdt.core.compiler.source=1.5 9 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.forms/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.swtbot.forms 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.ide/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.swtbot.ide 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.test/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.swtbot.test 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.swtbot.eclipse 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.ui/about.ini: -------------------------------------------------------------------------------- 1 | # about.ini 2 | # contains information about a feature 3 | # java.io.Properties file (ISO 8859-1 with "\" escapes) 4 | # "%key" are externalized strings defined in about.properties 5 | # This file does not need to be translated. 6 | appName=SWTBot 7 | # Property "aboutText" contains blurb for "About" dialog (translated) 8 | aboutText=%aboutBlurb 9 | 10 | # Property "featureImage" contains path to feature image (32x32) 11 | featureImage=feature.gif 12 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.gef/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.swtbot.eclipse.gef 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.swt.finder.test/README.txt: -------------------------------------------------------------------------------- 1 | HOWTO extend tests 2 | ================== 3 | 4 | First: 5 | To run a test, right-click on its java file then select Run As.. and JUnit Test (do not use SWTBot Test choice) 6 | 7 | Second: 8 | Launch the SWT example app: in the org.eclipse.swt.examples, find the class ControlExample or CustomControlExample and launch it as a Java application 9 | √ 10 | Third: 11 | Code your tests with inspiration from existing tests and execute them as JUnit Test 12 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.updatesite/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.swtbot.updatesite 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.UpdateSiteBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.UpdateSiteNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.dsl.test/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: SWTBot Dsl for Eclipse IDE (incubation) 4 | Bundle-SymbolicName: org.eclipse.swtbot.eclipse.dsl.test 5 | Bundle-Version: 2.0.5.qualifier 6 | Bundle-Vendor: Eclipse.org - SWTBot 7 | Require-Bundle: org.eclipse.ui, 8 | org.eclipse.core.runtime, 9 | org.eclipse.swtbot.eclipse.dsl, 10 | org.junit4 11 | Bundle-RequiredExecutionEnvironment: J2SE-1.5 12 | Bundle-ActivationPolicy: lazy 13 | -------------------------------------------------------------------------------- /tools/monitor.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd /opt/public/download-staging.priv/technology/swtbot/signed 4 | while true; do 5 | find * -type f -iname "*.zip" > files.unsort 6 | find * -type f -iname "*.jar" >> files.unsort 7 | sort files.unsort > files 8 | 9 | diff files ../to-sign/files > diff 10 | 11 | cat diff 12 | if [ -s 'diff' ]; then 13 | echo 'Still more to sign...' 14 | else 15 | echo 'Done signing...' 16 | break 17 | fi 18 | sleep 5 19 | done 20 | 21 | rm files files.unsort diff 22 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.test.junit3/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.swtbot.eclipse.test.junit3 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.test.junit4/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.swtbot.eclipse.test.junit4 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.FeatureBuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.pde.FeatureNature 16 | 17 | 18 | -------------------------------------------------------------------------------- /tools/version.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | 3 | require 'fileutils' 4 | 5 | HERE = File.expand_path('..', __FILE__) 6 | 7 | FROM_VERSION=ARGV[0] 8 | TO_VERSION=ARGV[1] 9 | 10 | FileUtils.cd "#{HERE}/.." do 11 | files = `git ls-tree -r master | grep 'MANIFEST.MF\\|feature.xml' | awk '{print $4}'` 12 | files.each_line do |file| 13 | file.chomp! 14 | contents = File.read(file).gsub("#{FROM_VERSION}.qualifier", "#{TO_VERSION}.qualifier") 15 | File.open(file, 'w') {|f| f.write contents} 16 | end 17 | end 18 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/keyboard/EN_US.keyboard: -------------------------------------------------------------------------------- 1 | ~ shift + ` 2 | ! shift + 1 3 | @ shift + 2 4 | # shift + 3 5 | $ shift + 4 6 | % shift + 5 7 | ^ shift + 6 8 | & shift + 7 9 | * shift + 8 10 | ( shift + 9 11 | ) shift + 0 12 | _ shift + - 13 | + shift + = 14 | { shift + [ 15 | } shift + ] 16 | | shift + \ 17 | : shift + ; 18 | " shift + ' 19 | < shift + , 20 | > shift + . 21 | ? shift + / 22 | ` ` 23 | - - 24 | = = 25 | [ [ 26 | ] ] 27 | \ \ 28 | ; ; 29 | ' ' 30 | , , 31 | . . 32 | / / 33 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/keyboard/MAC_EN_US.keyboard: -------------------------------------------------------------------------------- 1 | ~ shift + ` 2 | ! shift + 1 3 | @ shift + 2 4 | # shift + 3 5 | $ shift + 4 6 | % shift + 5 7 | ^ shift + 6 8 | & shift + 7 9 | * shift + 8 10 | ( shift + 9 11 | ) shift + 0 12 | _ shift + - 13 | + shift + = 14 | { shift + [ 15 | } shift + ] 16 | | shift + \ 17 | : shift + ; 18 | " shift + ' 19 | < shift + , 20 | > shift + . 21 | ? shift + / 22 | ` ` 23 | - - 24 | = = 25 | [ [ 26 | ] ] 27 | \ \ 28 | ; ; 29 | ' ' 30 | , , 31 | . . 32 | / / 33 | -------------------------------------------------------------------------------- /examples/rcp/org.rcpmail.test/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Test Plug-in (incubation) 4 | Bundle-SymbolicName: org.rcpmail.test 5 | Bundle-Version: 1.0.0 6 | Require-Bundle: org.eclipse.ui, 7 | org.eclipse.core.runtime, 8 | org.rcpmail, 9 | org.eclipse.swtbot.eclipse.finder, 10 | org.eclipse.swtbot.swt.finder, 11 | org.hamcrest, 12 | org.junit4, 13 | org.eclipse.swtbot.junit4_x 14 | Bundle-RequiredExecutionEnvironment: J2SE-1.5 15 | Bundle-Vendor: Eclipse.org - SWTBot 16 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.ui/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.swt.finder/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.finder/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.swt.finder.test/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.releng/javadoc/junit-package-list/package-list: -------------------------------------------------------------------------------- 1 | org.hamcrest 2 | org.hamcrest.core 3 | org.hamcrest.internal 4 | org.junit 5 | org.junit.experimental 6 | org.junit.experimental.categories 7 | org.junit.experimental.max 8 | org.junit.experimental.results 9 | org.junit.experimental.runners 10 | org.junit.experimental.theories 11 | org.junit.experimental.theories.suppliers 12 | org.junit.matchers 13 | org.junit.rules 14 | org.junit.runner 15 | org.junit.runner.manipulation 16 | org.junit.runner.notification 17 | org.junit.runners 18 | org.junit.runners.model 19 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.releng/test-sandbox/passFail.xsl: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | test.failed=true 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.go/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.swtbot.go 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.pde.ManifestBuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.SchemaBuilder 15 | 16 | 17 | 18 | 19 | 20 | org.eclipse.pde.PluginNature 21 | 22 | 23 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.core/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: SWTBot Test Launcher Application Plug-in 4 | Bundle-SymbolicName: org.eclipse.swtbot.eclipse.core;singleton:=true 5 | Bundle-Version: 2.0.5.qualifier 6 | Bundle-Vendor: Eclipse.org - SWTBot 7 | Bundle-RequiredExecutionEnvironment: J2SE-1.5 8 | Import-Package: org.eclipse.core.runtime;version="3.4.0", 9 | org.eclipse.equinox.app;version="1.0.0", 10 | org.eclipse.jdt.internal.junit.runner, 11 | org.eclipse.ui;ui.workbench=split, 12 | org.eclipse.ui.testing, 13 | org.osgi.framework;version="1.4.0" 14 | -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/examples_helloworld.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2000, 2003 IBM Corporation and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # IBM Corporation - initial API and implementation 10 | ############################################################################### 11 | Hello_world = Hello World -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.junit3.headless/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 9 | 11 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.junit4.headless/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 9 | 11 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /org.eclipse.ui.forms.examples/src/org/eclipse/ui/forms/examples/internal/ExamplesPluginResources.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2003, 2004 IBM Corporation and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # IBM Corporation - initial API and implementation 10 | ############################################################################### 11 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.ant.optional.junit3/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2000, 2007 IBM Corporation and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # IBM Corporation - initial API and implementation 10 | ############################################################################### 11 | bin.includes = about.html,\ 12 | META-INF/ 13 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.ant.optional.junit4/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2000, 2007 IBM Corporation and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # IBM Corporation - initial API and implementation 10 | ############################################################################### 11 | bin.includes = about.html,\ 12 | META-INF/ 13 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.spy/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 10 | 11 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.ui/intro/tutorialsExtensionContent.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Learn how to use SWTBot to test your SWT applications and plugins. 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.swt.finder.test/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: SWTBot SWT Control Finder plugin (incubation) 4 | Bundle-SymbolicName: org.eclipse.swtbot.swt.finder.test;singleton:=true 5 | Bundle-Version: 2.0.5.qualifier 6 | Require-Bundle: org.eclipse.swt, 7 | org.eclipse.jface, 8 | org.eclipse.swt.examples, 9 | org.eclipse.swtbot.swt.finder, 10 | org.apache.log4j;bundle-version="[1.2.13,1.3.0)", 11 | org.junit4, 12 | org.hamcrest, 13 | org.eclipse.swtbot.junit4_x 14 | Bundle-ActivationPolicy: lazy 15 | Bundle-ClassPath: . 16 | Bundle-Vendor: Eclipse.org - SWTBot 17 | Bundle-RequiredExecutionEnvironment: J2SE-1.5 18 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.finder.test/src/org/eclipse/swtbot/eclipse/finder/test/ui/perspectives/FormPerspective.java: -------------------------------------------------------------------------------- 1 | package org.eclipse.swtbot.eclipse.finder.test.ui.perspectives; 2 | 3 | import org.eclipse.swtbot.eclipse.finder.FinderTestIds; 4 | import org.eclipse.ui.IPageLayout; 5 | import org.eclipse.ui.IPerspectiveFactory; 6 | 7 | public class FormPerspective implements IPerspectiveFactory { 8 | 9 | public void createInitialLayout(IPageLayout layout) { 10 | layout.addView(FinderTestIds.VIEW_ID_FORM_1, IPageLayout.LEFT, 0.2f, layout.getEditorArea()); 11 | layout.addView(FinderTestIds.VIEW_ID_FORM_2, IPageLayout.RIGHT, 0.2f, FinderTestIds.VIEW_ID_FORM_1); 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.junit4_x/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: SWTBot JUnit 4.x Runners (incubation) 4 | Bundle-SymbolicName: org.eclipse.swtbot.junit4_x 5 | Bundle-Version: 2.0.5.qualifier 6 | Bundle-Vendor: Eclipse.org - SWTBot 7 | Bundle-RequiredExecutionEnvironment: J2SE-1.5 8 | Export-Package: org.eclipse.swtbot.swt.finder.junit 9 | Import-Package: org.apache.log4j;version="1.2.12", 10 | org.eclipse.swt.widgets, 11 | org.eclipse.swtbot.swt.finder, 12 | org.eclipse.swtbot.swt.finder.utils, 13 | org.junit.runner.notification;version="4.8.0", 14 | org.junit.runners;version="4.8.0", 15 | org.junit.runners.model;version="4.8.0" 16 | -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic.test/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2009 Obeo 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # Mariot Chauvin - initial API and implementation 10 | ############################################################################### 11 | 12 | source.. = src/ 13 | bin.includes = META-INF/,\ 14 | . 15 | -------------------------------------------------------------------------------- /examples/rcp/org.rcpmail.test/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2008 Ketan Padegaonkar and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # Ketan Padegaonkar - initial API and implementation 10 | ############################################################################### 11 | source.. = src/ 12 | output.. = bin/ 13 | bin.includes = META-INF/,\ 14 | . 15 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.generator.test/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2008 Ketan Padegaonkar and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # Ketan Padegaonkar - initial API and implementation 10 | ############################################################################### 11 | source.. = src/ 12 | output.. = bin/ 13 | bin.includes = META-INF/,\ 14 | . 15 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.generator/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: SWTBot Code Generator Plug-in (incubation) 4 | Bundle-SymbolicName: org.eclipse.swtbot.generator 5 | Bundle-Version: 2.0.5.qualifier 6 | Bundle-Vendor: Eclipse.org - SWTBot 7 | Bundle-RequiredExecutionEnvironment: J2SE-1.5 8 | Bundle-ClassPath: . 9 | Export-Package: org.eclipse.swtbot.generator 10 | Import-Package: com.thoughtworks.qdox;version="1.6.3", 11 | org.eclipse.swt.widgets, 12 | org.eclipse.swtbot.eclipse.finder, 13 | org.eclipse.swtbot.forms.finder.widgets, 14 | org.eclipse.swtbot.swt.finder, 15 | org.eclipse.swtbot.swt.finder.utils, 16 | org.hamcrest.generator.config;version="1.1.0" 17 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.releng/build-conf/e36.properties: -------------------------------------------------------------------------------- 1 | ## The location from where eclipse SDK will be downloaded in case there's none in the releng/externals directory 2 | ## Don't add the trailing file name, the file name is automatically appended based on eclipse.sdk.archive 3 | ## for locations of the eclipse SDKs 4 | ## see http://download.eclipse.org/eclipse/downloads/ and http://archive.eclipse.org/eclipse/downloads/index.php 5 | 6 | eclipse.sdk.url = http://archive.eclipse.org/eclipse/downloads/drops/R-3.6-201006080911/ 7 | 8 | eclipse.buildId = 3.6 9 | eclipse.qualifier = e36 10 | 11 | update.site.base.url = http://www.eclipse.org/downloads/download.php?r=1&file=/technology/swtbot/helios/dev-build/update-site 12 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.releng/build-conf/e37.properties: -------------------------------------------------------------------------------- 1 | ## The location from where eclipse SDK will be downloaded in case there's none in the releng/externals directory 2 | ## Don't add the trailing file name, the file name is automatically appended based on eclipse.sdk.archive 3 | ## for locations of the eclipse SDKs 4 | ## see http://download.eclipse.org/eclipse/downloads/ and http://archive.eclipse.org/eclipse/downloads/index.php 5 | 6 | eclipse.sdk.url = http://download.eclipse.org/eclipse/downloads/drops/R-3.7-201106131736/ 7 | 8 | eclipse.buildId = 3.7 9 | eclipse.qualifier = e37 10 | 11 | update.site.base.url = http://www.eclipse.org/downloads/download.php?r=1&file=/technology/swtbot/indigo/dev-build/update-site 12 | -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Nov 05 18:26:18 CET 2009 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 5 | org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve 6 | org.eclipse.jdt.core.compiler.compliance=1.5 7 | org.eclipse.jdt.core.compiler.debug.lineNumber=generate 8 | org.eclipse.jdt.core.compiler.debug.localVariable=generate 9 | org.eclipse.jdt.core.compiler.debug.sourceFile=generate 10 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 11 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 12 | org.eclipse.jdt.core.compiler.source=1.5 13 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.dsl.test/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2010 Ketan Padegaonkar and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # Ketan Padegaonkar - initial API and implementation 10 | ############################################################################### 11 | source.. = src/ 12 | output.. = bin/ 13 | bin.includes = META-INF/,\ 14 | .,\ 15 | src/ 16 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.swt.demo/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: SWTBot Demo Plug-in (incubation) 4 | Bundle-SymbolicName: org.eclipse.swtbot.swt.demo;singleton:=true 5 | Bundle-Version: 2.0.5.qualifier 6 | Bundle-Activator: org.eclipse.swtbot.swt.demo.Activator 7 | Bundle-Vendor: Eclipse.org - SWTBot 8 | Bundle-ActivationPolicy: lazy 9 | Bundle-RequiredExecutionEnvironment: J2SE-1.5 10 | Bundle-ClassPath: . 11 | Export-Package: org.eclipse.swtbot.swt.demo 12 | Import-Package: org.eclipse.swt, 13 | org.eclipse.swt.examples.controlexample, 14 | org.eclipse.swt.layout, 15 | org.eclipse.swt.widgets, 16 | org.eclipse.swtbot.swt.finder, 17 | org.eclipse.swtbot.swt.finder.widgets 18 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.ui.test/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2008, 2010 Ketan Padegaonkar and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # Ketan Padegaonkar - initial API and implementation 10 | ############################################################################### 11 | source.. = src/,\ 12 | functional/ 13 | output.. = bin/ 14 | bin.includes = META-INF/,\ 15 | . 16 | -------------------------------------------------------------------------------- /org.eclipse.ui.forms.examples/plugin.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2003, 2007 IBM Corporation and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # IBM Corporation - initial API and implementation 10 | ############################################################################### 11 | pluginName = Examples of Eclipse Forms 12 | baseEditor = Simple Form (RCP) Editor 13 | singleHeaderEditor = Single Header Editor 14 | -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic.test/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jun 23 16:28:55 CEST 2009 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 5 | org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve 6 | org.eclipse.jdt.core.compiler.compliance=1.5 7 | org.eclipse.jdt.core.compiler.debug.lineNumber=generate 8 | org.eclipse.jdt.core.compiler.debug.localVariable=generate 9 | org.eclipse.jdt.core.compiler.debug.sourceFile=generate 10 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 11 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 12 | org.eclipse.jdt.core.compiler.source=1.5 13 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.forms.finder.test/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: SWTBot Forms Tests 4 | Bundle-SymbolicName: org.eclipse.swtbot.forms.finder.test;singleton:=true 5 | Bundle-Version: 2.0.5.qualifier 6 | Bundle-RequiredExecutionEnvironment: J2SE-1.5 7 | Require-Bundle: org.eclipse.swt, 8 | org.eclipse.jface, 9 | org.eclipse.swt.examples, 10 | org.eclipse.swtbot.swt.finder, 11 | org.apache.log4j;bundle-version="[1.2.13,1.3.0)", 12 | org.junit4, 13 | org.hamcrest, 14 | org.eclipse.swtbot.junit4_x, 15 | org.eclipse.swtbot.forms.finder, 16 | org.eclipse.ui.forms, 17 | org.eclipse.core.runtime, 18 | org.eclipse.ui, 19 | org.eclipse.swtbot.eclipse.finder 20 | Bundle-Vendor: Eclipse SWTBot 21 | -------------------------------------------------------------------------------- /tools/create_index_html.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | 3 | pwd = Dir.pwd 4 | 5 | puts "" 6 | 7 | puts "Directory index of #{pwd}" 8 | 9 | puts "

Directory index of #{pwd}

" 10 | 11 | puts "" 12 | 13 | puts "" 14 | 15 | Dir.foreach(".") do |file| 16 | if File.directory?(file) 17 | puts "" 18 | elsif (file != 'index.html') 19 | puts "" 20 | end 21 | # puts "" if !File.directory(file)? 22 | end 23 | 24 | puts "
NameSize
#{file}-
#{file}#{File.size(file)}
#{file}#{File.size(file)}
" 25 | puts "" 26 | 27 | 28 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.dsl/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2010 Ketan Padegaonkar and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # Ketan Padegaonkar - initial API and implementation 10 | ############################################################################### 11 | source.. = src/ 12 | output.. = bin/ 13 | bin.includes = META-INF/,\ 14 | .,\ 15 | src/,\ 16 | .settings/ 17 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.go/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2010 Ketan Padegaonkar and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # Ketan Padegaonkar - initial API and implementation 10 | ############################################################################### 11 | bin.includes = LICENSE.EPL,\ 12 | META-INF/,\ 13 | about.html 14 | src.includes = LICENSE.EPL,\ 15 | about.html 16 | -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic.test/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: GEF logic SWTBot Test 4 | Bundle-SymbolicName: org.eclipse.gef.examples.logic.test 5 | Bundle-Version: 2.0.5.qualifier 6 | Bundle-RequiredExecutionEnvironment: J2SE-1.5 7 | Require-Bundle: org.eclipse.gef.examples.logic, 8 | org.eclipse.swtbot.eclipse.gef.finder, 9 | org.eclipse.swtbot.eclipse.finder, 10 | org.eclipse.swtbot.eclipse.core, 11 | org.eclipse.swtbot.swt.finder, 12 | org.eclipse.swtbot.junit4_x, 13 | org.junit4, 14 | org.eclipse.swt, 15 | org.eclipse.ui, 16 | org.eclipse.osgi, 17 | org.hamcrest, 18 | org.eclipse.gef, 19 | org.eclipse.core.runtime, 20 | org.apache.log4j, 21 | org.eclipse.core.resources 22 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.finder.test/src/org/eclipse/swtbot/eclipse/finder/FinderTestIds.java: -------------------------------------------------------------------------------- 1 | package org.eclipse.swtbot.eclipse.finder; 2 | 3 | import org.eclipse.swtbot.eclipse.finder.test.ui.perspectives.FormPerspective; 4 | import org.eclipse.swtbot.eclipse.finder.test.ui.views.SWTBotFormView; 5 | import org.eclipse.swtbot.eclipse.finder.test.ui.views.SWTBotTestView; 6 | 7 | public class FinderTestIds { 8 | 9 | public static final String VIEW_ID_TEST = SWTBotTestView.class.getName(); 10 | public static final String VIEW_ID_FORM_1 = SWTBotFormView.class.getName() + "1"; 11 | public static final String VIEW_ID_FORM_2 = SWTBotFormView.class.getName() + "2"; 12 | public static final String PERSPECTIVE_ID_FORM = FormPerspective.class.getName(); 13 | 14 | } 15 | -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/clipboard/MyType.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright (c) 2000, 2003 IBM Corporation and others. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * IBM Corporation - initial API and implementation 10 | *******************************************************************************/ 11 | package org.eclipse.swt.examples.clipboard; 12 | 13 | public class MyType { 14 | String firstName; 15 | String lastName; 16 | } 17 | -------------------------------------------------------------------------------- /org.eclipse.ui.forms.examples/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.ui.forms.examples 4 | 5 | 6 | 7 | org.eclipse.jdt.core.javabuilder 8 | 9 | 10 | 11 | 12 | org.eclipse.pde.ManifestBuilder 13 | 14 | 15 | 16 | 17 | org.eclipse.pde.SchemaBuilder 18 | 19 | 20 | 21 | 22 | 23 | org.eclipse.pde.PluginNature 24 | org.eclipse.jdt.core.javanature 25 | 26 | 27 | -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic.test/src/org/eclipse/gef/examples/logic/test/messages/eclipseUIMessages.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2009 Obeo 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # Mariot Chauvin - initial API and implementation 10 | ############################################################################### 11 | menuFile=File 12 | menuFile_New=New 13 | menuFile_New_Other=Other... 14 | wizardNext=Next > 15 | wizardFinish=Finish -------------------------------------------------------------------------------- /examples/rcp/org.rcpmail/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.rcpmail 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.pde.PluginNature 26 | org.eclipse.jdt.core.javanature 27 | 28 | 29 | -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/addressbook/FindListener.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright (c) 2000, 2003 IBM Corporation and others. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * IBM Corporation - initial API and implementation 10 | *******************************************************************************/ 11 | package org.eclipse.swt.examples.addressbook; 12 | 13 | public interface FindListener { 14 | 15 | public boolean find(); 16 | 17 | } 18 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.generator/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2008 Ketan Padegaonkar and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # Ketan Padegaonkar - initial API and implementation 10 | ############################################################################### 11 | source.. = src/ 12 | output.. = bin/ 13 | bin.includes = META-INF/,\ 14 | .,\ 15 | about.html,\ 16 | LICENSE.EPL,\ 17 | about_files/ 18 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.updatesite/web/site.css: -------------------------------------------------------------------------------- 1 | 13 | -------------------------------------------------------------------------------- /examples/rcp/org.rcpmail.test/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.rcpmail.test 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.pde.PluginNature 26 | org.eclipse.jdt.core.javanature 27 | 28 | 29 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.junit4_x/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2010 Ketan Padegaonkar and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # Ketan Padegaonkar - initial API and implementation 10 | ############################################################################### 11 | source.. = src/ 12 | output.. = bin/ 13 | bin.includes = META-INF/MANIFEST.MF,\ 14 | .,\ 15 | src/,\ 16 | about.html,\ 17 | LICENSE.EPL 18 | -------------------------------------------------------------------------------- /org.eclipse.swt.examples/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.swt.examples 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.pde.PluginNature 26 | org.eclipse.jdt.core.javanature 27 | 28 | 29 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.junit4_x/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.swtbot.junit4_x 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.pde.PluginNature 26 | org.eclipse.jdt.core.javanature 27 | 28 | 29 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.swt.demo/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.swtbot.swt.demo 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.pde.PluginNature 26 | org.eclipse.jdt.core.javanature 27 | 28 | 29 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.dsl/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.swtbot.eclipse.dsl 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.pde.PluginNature 26 | org.eclipse.jdt.core.javanature 27 | 28 | 29 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.finder.test/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: SWTBot Eclipse Control Finder Plug-in Test (incubation) 4 | Bundle-SymbolicName: org.eclipse.swtbot.eclipse.finder.test;singleton:=true 5 | Bundle-Version: 2.0.5.qualifier 6 | Require-Bundle: org.eclipse.jface.text, 7 | org.eclipse.core.resources, 8 | org.eclipse.ui, 9 | org.eclipse.ui.editors, 10 | org.eclipse.ui.ide, 11 | org.eclipse.core.runtime, 12 | org.eclipse.swtbot.swt.finder, 13 | org.eclipse.swtbot.eclipse.finder, 14 | org.hamcrest, 15 | org.junit4, 16 | org.apache.log4j;bundle-version="[1.2.13,1.3.0)", 17 | org.eclipse.swtbot.junit4_x 18 | Bundle-RequiredExecutionEnvironment: J2SE-1.5 19 | Bundle-Vendor: Eclipse.org - SWTBot 20 | Eclipse-RegisterBuddy: org.apache.log4j 21 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.spy/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.swtbot.eclipse.spy 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.pde.PluginNature 26 | org.eclipse.jdt.core.javanature 27 | 28 | 29 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.ui/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.swtbot.eclipse.ui 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.pde.PluginNature 26 | org.eclipse.jdt.core.javanature 27 | 28 | 29 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.generator/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.swtbot.generator 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.pde.PluginNature 26 | org.eclipse.jdt.core.javanature 27 | 28 | 29 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.swt.finder/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.swtbot.swt.finder 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.pde.PluginNature 26 | org.eclipse.jdt.core.javanature 27 | 28 | 29 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.core/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.swtbot.eclipse.core 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.pde.PluginNature 26 | org.eclipse.jdt.core.javanature 27 | 28 | 29 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.forms.finder/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.swtbot.forms.finder 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.pde.PluginNature 26 | org.eclipse.jdt.core.javanature 27 | 28 | 29 | -------------------------------------------------------------------------------- /examples/rcp/org.rcpmail/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2008 Ketan Padegaonkar and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # Ketan Padegaonkar - initial API and implementation 10 | ############################################################################### 11 | source.. = src/ 12 | output.. = bin/ 13 | bin.includes = plugin.xml,\ 14 | META-INF/,\ 15 | .,\ 16 | icons/,\ 17 | product_lg.gif,\ 18 | splash.bmp 19 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.dsl.test/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.swtbot.eclipse.dsl.test 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.pde.PluginNature 26 | org.eclipse.jdt.core.javanature 27 | 28 | 29 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.ui.test/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.swtbot.eclipse.ui.test 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.pde.PluginNature 26 | org.eclipse.jdt.core.javanature 27 | 28 | 29 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.generator.test/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.swtbot.generator.test 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.pde.PluginNature 26 | org.eclipse.jdt.core.javanature 27 | 28 | 29 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.go/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: SWTBot Go Convenience Plugin (Incubation) 4 | Bundle-SymbolicName: org.eclipse.swtbot.go 5 | Bundle-Version: 2.0.5.qualifier 6 | Require-Bundle: org.eclipse.swtbot.eclipse.core;visibility:=reexport, 7 | org.eclipse.swtbot.eclipse.finder;visibility:=reexport, 8 | org.eclipse.swtbot.swt.finder;visibility:=reexport, 9 | org.eclipse.swtbot.junit4_x;visibility:=reexport, 10 | org.hamcrest;visibility:=reexport, 11 | org.junit4;visibility:=reexport, 12 | org.eclipse.core.runtime;visibility:=reexport, 13 | org.apache.log4j;visibility:=reexport, 14 | org.eclipse.swt;visibility:=reexport, 15 | org.eclipse.ui;visibility:=reexport 16 | Bundle-RequiredExecutionEnvironment: J2SE-1.5 17 | Bundle-Vendor: Eclipse.org - SWTBot 18 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.swt.finder.test/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.swtbot.swt.finder.test 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.pde.PluginNature 26 | org.eclipse.jdt.core.javanature 27 | 28 | 29 | -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.gef.examples.logic 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.pde.PluginNature 26 | org.eclipse.jdt.core.javanature 27 | 28 | 29 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.gef.finder/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.swtbot.eclipse.gef.finder 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.pde.PluginNature 26 | org.eclipse.jdt.core.javanature 27 | 28 | 29 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.forms.finder.test/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.swtbot.forms.finder.test 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.pde.PluginNature 26 | org.eclipse.jdt.core.javanature 27 | 28 | 29 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.finder.test/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.swtbot.eclipse.finder.test 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.pde.PluginNature 26 | org.eclipse.jdt.core.javanature 27 | 28 | 29 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.swt.finder/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2010 Ketan Padegaonkar and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # Ketan Padegaonkar - initial API and implementation 10 | ############################################################################### 11 | bin.includes = META-INF/,\ 12 | .,\ 13 | LICENSE.EPL,\ 14 | about.html,\ 15 | src/ 16 | src.includes = LICENSE.EPL,\ 17 | about.html 18 | source.. = src/ 19 | -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic.test/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.gef.examples.logic.test 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.jdt.core.javanature 26 | org.eclipse.pde.PluginNature 27 | 28 | 29 | -------------------------------------------------------------------------------- /org.eclipse.swt.examples/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2008, 2010 Ketan Padegaonkar and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # Ketan Padegaonkar - initial API and implementation 10 | ############################################################################### 11 | 12 | source.. = src/ 13 | bin.includes = META-INF/,\ 14 | LICENSE.EPL,\ 15 | .,\ 16 | src/,\ 17 | about.html 18 | src.includes = LICENSE.EPL,\ 19 | about.html 20 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.junit3.headless/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.swtbot.eclipse.junit3.headless 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.pde.PluginNature 26 | org.eclipse.jdt.core.javanature 27 | 28 | 29 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.junit4.headless/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.swtbot.eclipse.junit4.headless 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.pde.PluginNature 26 | org.eclipse.jdt.core.javanature 27 | 28 | 29 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.ui/src/org/eclipse/swtbot/eclipse/ui/project/_project: -------------------------------------------------------------------------------- 1 | 2 | 3 | @PLUGIN_ID@ 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.pde.ManifestBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.pde.SchemaBuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.pde.PluginNature 26 | org.eclipse.jdt.core.javanature 27 | 28 | 29 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.forms.finder/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-SymbolicName: org.eclipse.swtbot.forms.finder 4 | Bundle-Version: 2.0.5.qualifier 5 | Bundle-RequiredExecutionEnvironment: J2SE-1.5 6 | Require-Bundle: org.eclipse.swtbot.swt.finder 7 | Import-Package: org.apache.log4j;version="[1.2.13,1.3.0)", 8 | org.eclipse.jface, 9 | org.eclipse.jface.bindings, 10 | org.eclipse.swt, 11 | org.eclipse.swt.graphics, 12 | org.eclipse.swt.widgets, 13 | org.eclipse.ui.forms, 14 | org.eclipse.ui.forms.editor, 15 | org.eclipse.ui.forms.events, 16 | org.eclipse.ui.forms.widgets, 17 | org.hamcrest;version="1.1.0" 18 | Export-Package: org.eclipse.swtbot.forms.finder, 19 | org.eclipse.swtbot.forms.finder.widgets 20 | Bundle-Vendor: Eclipse SWTBot 21 | Bundle-Name: SWTBot Forms (Incubation) 22 | -------------------------------------------------------------------------------- /org.eclipse.ui.forms.examples/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: %pluginName 4 | Bundle-SymbolicName: org.eclipse.ui.forms.examples; singleton:=true 5 | Bundle-Version: 3.1.100 6 | Bundle-ClassPath: examples.jar 7 | Bundle-Activator: org.eclipse.ui.forms.examples.internal.ExamplesPlugin 8 | Bundle-Vendor: Eclipse.org 9 | Bundle-Localization: plugin 10 | Export-Package: org.eclipse.ui.forms.examples.internal, 11 | org.eclipse.ui.forms.examples.internal.dialogs, 12 | org.eclipse.ui.forms.examples.internal.rcp, 13 | org.eclipse.ui.forms.examples.views 14 | Require-Bundle: org.eclipse.ui, 15 | org.eclipse.core.resources, 16 | org.eclipse.ui.forms, 17 | org.eclipse.core.runtime, 18 | org.eclipse.ui.ide 19 | Bundle-ActivationPolicy: lazy 20 | Bundle-RequiredExecutionEnvironment: J2SE-1.4 21 | -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/examples_javaviewer.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2000, 2003 IBM Corporation and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # IBM Corporation - initial API and implementation 10 | ############################################################################### 11 | Open_menuitem=&Open...\tCtrl+O 12 | Exit_menuitem=E&xit 13 | File_menuitem=&File 14 | Window_title=SWT Java Viewer 15 | Err_file_no_exist=File {0} does not exist. 16 | Err_file_io=IO error reading file:\n{0} 17 | Err_file_not_found=File not found:\n{0} -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.junit4.headless/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: SWTBot Headless JUnit4 Launch Plug-in (incubation) 4 | Bundle-SymbolicName: org.eclipse.swtbot.eclipse.junit4.headless;singleton:=true 5 | Bundle-Version: 2.0.5.qualifier 6 | Bundle-Vendor: Eclipse.org - SWTBot 7 | Bundle-ActivationPolicy: lazy 8 | Bundle-RequiredExecutionEnvironment: J2SE-1.5 9 | Export-Package: org.eclipse.swtbot.eclipse.junit4.headless 10 | Import-Package: junit.framework;version="4.5.0", 11 | org.apache.tools.ant, 12 | org.apache.tools.ant.taskdefs.optional.junit, 13 | org.eclipse.core.runtime;version="3.4.0", 14 | org.eclipse.equinox.app;version="1.0.0", 15 | org.eclipse.osgi.util;version="1.1.0", 16 | org.eclipse.swt.widgets, 17 | org.eclipse.ui, 18 | org.eclipse.ui.testing, 19 | org.osgi.framework;version="1.4.0" 20 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.swt.finder.test/.settings/.api_filters: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.swt.finder.test/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2008, 2010 Ketan Padegaonkar and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # Ketan Padegaonkar - initial API and implementation 10 | ############################################################################### 11 | bin.includes = META-INF/,\ 12 | .,\ 13 | LICENSE.EPL,\ 14 | about.html,\ 15 | src/ 16 | src.includes = LICENSE.EPL,\ 17 | about.html 18 | source.. = src/ 19 | jars.compile.order = . 20 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.ui/src/org/eclipse/swtbot/eclipse/ui/wizards/WizardPageSettings.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright (c) 2010 Ketan Padegaonkar and others. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Ketan Padegaonkar - initial API and implementation 10 | *******************************************************************************/ 11 | package org.eclipse.swtbot.eclipse.ui.wizards; 12 | 13 | public interface WizardPageSettings { 14 | 15 | void setErrorMessage(String newMessage); 16 | 17 | void setPageComplete(boolean complete); 18 | 19 | } 20 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.swt.demo/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2008, 2010 Ketan Padegaonkar and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # Ketan Padegaonkar - initial API and implementation 10 | ############################################################################### 11 | source.. = src/ 12 | output.. = bin/ 13 | bin.includes = META-INF/,\ 14 | .,\ 15 | about.html,\ 16 | LICENSE.EPL,\ 17 | src/ 18 | source.. = src/ 19 | src.includes = LICENSE.EPL,\ 20 | about.html 21 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.junit3.headless/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: SWTBot Headless JUnit3 Launch Plug-in (incubation) 4 | Bundle-SymbolicName: org.eclipse.swtbot.eclipse.junit3.headless;singleton:=true 5 | Bundle-Version: 2.0.5.qualifier 6 | Bundle-Vendor: Eclipse.org - SWTBot 7 | Bundle-ActivationPolicy: lazy 8 | Bundle-RequiredExecutionEnvironment: J2SE-1.5 9 | Export-Package: org.eclipse.swtbot.eclipse.junit3.headless 10 | Import-Package: junit.framework;version="[3.8.2,4.0.0)", 11 | org.apache.tools.ant, 12 | org.apache.tools.ant.taskdefs.optional.junit, 13 | org.eclipse.core.runtime;version="3.4.0", 14 | org.eclipse.equinox.app;version="1.0.0", 15 | org.eclipse.osgi.util;version="1.1.0", 16 | org.eclipse.swt.widgets, 17 | org.eclipse.ui, 18 | org.eclipse.ui.testing, 19 | org.osgi.framework;version="1.4.0" 20 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.core/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2010 Ketan Padegaonkar and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # Ketan Padegaonkar - initial API and implementation 10 | ############################################################################### 11 | source.. = src/ 12 | output.. = bin/ 13 | bin.includes = META-INF/,\ 14 | .,\ 15 | LICENSE.EPL,\ 16 | about.html,\ 17 | src/,\ 18 | plugin.xml 19 | src.includes = LICENSE.EPL,\ 20 | about.html 21 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.finder/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2008, 2010 Ketan Padegaonkar and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # Ketan Padegaonkar - initial API and implementation 10 | ############################################################################### 11 | source.. = src/ 12 | output.. = bin/ 13 | bin.includes = META-INF/,\ 14 | .,\ 15 | LICENSE.EPL,\ 16 | about.html,\ 17 | src/ 18 | jars.compile.order = . 19 | src.includes = LICENSE.EPL,\ 20 | about.html 21 | -------------------------------------------------------------------------------- /org.eclipse.ui.forms.examples/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2003, 2009 IBM Corporation and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # IBM Corporation - initial API and implementation 10 | ############################################################################### 11 | source.examples.jar = src/ 12 | bin.includes = plugin.xml,\ 13 | *.jar,\ 14 | examples.jar,\ 15 | icons/,\ 16 | about.html,\ 17 | META-INF/,\ 18 | plugin.properties 19 | output.examples.jar = bin/ 20 | -------------------------------------------------------------------------------- /tools/publish-build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd /home/data/httpd/download.eclipse.org/technology/swtbot 3 | 4 | if [ ! -s 'galileo/dev-build/version.txt' ]; then 5 | echo "Could not detect version of swtbot currently deployed." 6 | exit -1 7 | fi 8 | 9 | CURRENT_VERSION_ON_DOWNLOAD_SITE=`cat galileo/dev-build/version.txt | sed -e 's/-e[0-9][0-9]$//'` 10 | 11 | rm -rf archives/$CURRENT_VERSION_ON_DOWNLOAD_SITE 12 | mkdir -p archives/$CURRENT_VERSION_ON_DOWNLOAD_SITE 13 | rm -rf new 14 | mkdir new 15 | cp -rf ~/to-upload/* new 16 | cp -rf /opt/public/download-staging.priv/technology/swtbot/signed/* new 17 | mv galileo ganymede helios archives/$CURRENT_VERSION_ON_DOWNLOAD_SITE 18 | mv new/* . 19 | 20 | cd /home/data/httpd/download.eclipse.org/technology/swtbot/archives 21 | create_index_html.rb > index.html 22 | 23 | cd $CURRENT_VERSION_ON_DOWNLOAD_SITE 24 | create_index_html.rb > index.html 25 | 26 | -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2002, 2005 IBM Corporation and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # IBM Corporation - initial API and implementation 10 | ############################################################################### 11 | bin.includes = about.html,\ 12 | plugin.properties,\ 13 | plugin.xml,\ 14 | .,\ 15 | logic.gif,\ 16 | META-INF/ 17 | source.. = src/,\ 18 | src-notgen/ 19 | 20 | output.. = bin/ 21 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.swt.finder.test/src/org/eclipse/swtbot/swt/finder/DummyTestDoNotExecuteInAnt.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright (c) 2008 Ketan Padegaonkar and others. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Ketan Padegaonkar - initial API and implementation 10 | *******************************************************************************/ 11 | package org.eclipse.swtbot.swt.finder; 12 | 13 | import org.junit.Test; 14 | 15 | public class DummyTestDoNotExecuteInAnt extends SWTBotTestCase { 16 | 17 | @Test 18 | public void thisFails() throws Exception { 19 | fail(); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/results/BoolResult.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright (c) 2008 Ketan Padegaonkar and others. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Ketan Padegaonkar - initial API and implementation 10 | *******************************************************************************/ 11 | package org.eclipse.swtbot.swt.finder.results; 12 | 13 | 14 | /** 15 | * 16 | * @author Ketan Padegaonkar <KetanPadegaonkar [at] gmail [dot] com> 17 | * @version $Id$ 18 | * @since 2.0 19 | */ 20 | public interface BoolResult extends Result { 21 | } -------------------------------------------------------------------------------- /org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/results/IntResult.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright (c) 2008 Ketan Padegaonkar and others. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Ketan Padegaonkar - initial API and implementation 10 | *******************************************************************************/ 11 | package org.eclipse.swtbot.swt.finder.results; 12 | 13 | 14 | /** 15 | * 16 | * @author Ketan Padegaonkar <KetanPadegaonkar [at] gmail [dot] com> 17 | * @version $Id$ 18 | * @since 2.0 19 | */ 20 | public interface IntResult extends Result { 21 | } -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.finder.test/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2008, 2010 Ketan Padegaonkar and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # Ketan Padegaonkar - initial API and implementation 10 | ############################################################################### 11 | source.. = src/ 12 | output.. = bin/ 13 | bin.includes = META-INF/,\ 14 | .,\ 15 | about.html,\ 16 | LICENSE.EPL,\ 17 | src/,\ 18 | plugin.xml 19 | source.. = src/ 20 | src.includes = LICENSE.EPL,\ 21 | about.html 22 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.finder.test/src/org/eclipse/swtbot/eclipse/finder/test/ui/views/SWTBotFormView.java: -------------------------------------------------------------------------------- 1 | package org.eclipse.swtbot.eclipse.finder.test.ui.views; 2 | 3 | import org.eclipse.jface.layout.GridLayoutFactory; 4 | import org.eclipse.swt.SWT; 5 | import org.eclipse.swt.widgets.Composite; 6 | import org.eclipse.swt.widgets.Label; 7 | import org.eclipse.swt.widgets.Text; 8 | import org.eclipse.ui.part.ViewPart; 9 | 10 | public class SWTBotFormView extends ViewPart { 11 | 12 | private Text text; 13 | 14 | @Override 15 | public void createPartControl(Composite parent) { 16 | GridLayoutFactory.fillDefaults().numColumns(2).applyTo(parent); 17 | Label label = new Label(parent, SWT.NONE); 18 | label.setText(getPartName()); 19 | text = new Text(parent, SWT.BORDER); 20 | text.setText(getPartName()); 21 | } 22 | 23 | @Override 24 | public void setFocus() { 25 | text.setFocus(); 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.generator/templates/SWTFormsBot/imports: -------------------------------------------------------------------------------- 1 | import org.eclipse.swt.widgets.Widget 2 | import org.eclipse.swtbot.swt.finder.exceptions.WidgetNotFoundException 3 | import org.eclipse.swtbot.swt.finder.finders.ChildrenControlFinder 4 | import org.eclipse.swtbot.swt.finder.finders.ControlFinder 5 | import org.eclipse.swtbot.swt.finder.finders.Finder 6 | import org.eclipse.swtbot.swt.finder.finders.MenuFinder 7 | import org.hamcrest.Matcher 8 | import static org.eclipse.swtbot.swt.finder.matchers.WidgetMatcherFactory.allOf 9 | import static org.eclipse.swtbot.swt.finder.matchers.WidgetMatcherFactory.inGroup 10 | import static org.eclipse.swtbot.swt.finder.matchers.WidgetMatcherFactory.widgetOfType 11 | import static org.eclipse.swtbot.swt.finder.matchers.WidgetMatcherFactory.withId 12 | import static org.eclipse.swtbot.swt.finder.matchers.WidgetMatcherFactory.withMnemonic 13 | import org.eclipse.swtbot.swt.finder.SWTBot -------------------------------------------------------------------------------- /org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/results/StringResult.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright (c) 2008 Ketan Padegaonkar and others. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Ketan Padegaonkar - initial API and implementation 10 | *******************************************************************************/ 11 | package org.eclipse.swtbot.swt.finder.results; 12 | 13 | 14 | /** 15 | * 16 | * @author Ketan Padegaonkar <KetanPadegaonkar [at] gmail [dot] com> 17 | * @version $Id$ 18 | * @since 2.0 19 | */ 20 | public interface StringResult extends Result { 21 | } -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/examples_texteditor.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2000, 2005 IBM Corporation and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # IBM Corporation - initial API and implementation 10 | ############################################################################### 11 | Exit_menuitem=E&xit 12 | Cut_menuitem=Cu&t\tCtrl+X 13 | Copy_menuitem=&Copy\tCtrl+C 14 | Paste_menuitem=&Paste\tCtrl+V 15 | Window_title=SWT Text Editor 16 | Font_menuitem=Set &Font... 17 | Edit_menuitem=&Edit 18 | File_menuitem=&File 19 | Bold=Bold 20 | Italic=Italic 21 | Underline=Underline 22 | Strikeout=Strikeout 23 | -------------------------------------------------------------------------------- /org.eclipse.swt.examples/src/org/eclipse/swt/examples/paint/PaintTool.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright (c) 2000, 2005 IBM Corporation and others. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * IBM Corporation - initial API and implementation 10 | *******************************************************************************/ 11 | package org.eclipse.swt.examples.paint; 12 | 13 | public interface PaintTool extends PaintSession { 14 | /** 15 | * Sets the tool's settings. 16 | * 17 | * @param toolSettings 18 | * the new tool settings 19 | */ 20 | public void set(ToolSettings toolSettings); 21 | } 22 | -------------------------------------------------------------------------------- /examples/rcp/org.rcpmail.test/src/org/rcpmail/AllTests.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright (c) 2008 Ketan Padegaonkar and others. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Ketan Padegaonkar - initial API and implementation 10 | *******************************************************************************/ 11 | package org.rcpmail; 12 | 13 | import org.junit.runner.RunWith; 14 | import org.junit.runners.Suite; 15 | import org.junit.runners.Suite.SuiteClasses; 16 | 17 | @RunWith(Suite.class) 18 | @SuiteClasses( { MessageCreateTest.class, MyFirstTest.class, MySecondTest.class }) 19 | public class AllTests { 20 | 21 | } 22 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/results/ListResult.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright (c) 2008 Ketan Padegaonkar and others. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Ketan Padegaonkar - initial API and implementation 10 | *******************************************************************************/ 11 | package org.eclipse.swtbot.swt.finder.results; 12 | 13 | import java.util.List; 14 | 15 | 16 | /** 17 | * @author Ketan Padegaonkar <KetanPadegaonkar [at] gmail [dot] com> 18 | * @version $Id$ 19 | * @since 2.0 20 | */ 21 | public interface ListResult extends Result> { 22 | } -------------------------------------------------------------------------------- /org.eclipse.swtbot.forms/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2009 Mariot Chauvin and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # Mariot Chauvin - initial API and implementation 10 | ############################################################################### 11 | bin.includes = feature.xml,\ 12 | license.html,\ 13 | epl-v10.html,\ 14 | feature.properties 15 | jars.compile.order = . 16 | source.. = 17 | src.includes = feature.xml,\ 18 | build.properties,\ 19 | epl-v10.html,\ 20 | license.html,\ 21 | feature.properties 22 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/results/ArrayResult.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright (c) 2008 Ketan Padegaonkar and others. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Ketan Padegaonkar - initial API and implementation 10 | *******************************************************************************/ 11 | package org.eclipse.swtbot.swt.finder.results; 12 | 13 | /** 14 | * A runnable that returns an array of types T. 15 | * 16 | * @since 2.0 17 | */ 18 | public interface ArrayResult { 19 | /** 20 | * @return a runnable that returns an object of type T. 21 | */ 22 | public T[] run(); 23 | } -------------------------------------------------------------------------------- /org.eclipse.swtbot/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2008 Ketan Padegaonkar and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # Ketan Padegaonkar - initial API and implementation 10 | ############################################################################### 11 | bin.includes = feature.xml,\ 12 | license.html,\ 13 | epl-v10.html,\ 14 | feature.properties 15 | jars.compile.order = . 16 | source.. = 17 | src.includes = feature.xml,\ 18 | build.properties,\ 19 | epl-v10.html,\ 20 | license.html,\ 21 | feature.properties 22 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.ide/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2010 Ketan Padegaonkar and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # Ketan Padegaonkar - initial API and implementation 10 | ############################################################################### 11 | bin.includes = feature.xml,\ 12 | license.html,\ 13 | epl-v10.html,\ 14 | feature.properties 15 | jars.compile.order = . 16 | source.. = 17 | src.includes = feature.xml,\ 18 | build.properties,\ 19 | epl-v10.html,\ 20 | license.html,\ 21 | feature.properties 22 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.swt.finder/src/org/eclipse/swtbot/swt/finder/results/VoidResult.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright (c) 2008 Ketan Padegaonkar and others. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Ketan Padegaonkar - initial API and implementation 10 | *******************************************************************************/ 11 | package org.eclipse.swtbot.swt.finder.results; 12 | 13 | /** 14 | * @author Ketan Padegaonkar <KetanPadegaonkar [at] gmail [dot] com> 15 | * @version $Id$ 16 | * @since 2.0 17 | */ 18 | public interface VoidResult { 19 | /** 20 | * returns nothing. 21 | */ 22 | public void run(); 23 | } 24 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.test/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2008 Ketan Padegaonkar and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # Ketan Padegaonkar - initial API and implementation 10 | ############################################################################### 11 | bin.includes = feature.xml,\ 12 | license.html,\ 13 | epl-v10.html,\ 14 | feature.properties 15 | jars.compile.order = . 16 | source.. = 17 | src.includes = feature.xml,\ 18 | build.properties,\ 19 | epl-v10.html,\ 20 | license.html,\ 21 | feature.properties 22 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.gef/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2009 Mariot Chauvin and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # Mariot Chauvin - initial API and implementation 10 | ############################################################################### 11 | bin.includes = feature.xml,\ 12 | license.html,\ 13 | epl-v10.html,\ 14 | feature.properties 15 | jars.compile.order = . 16 | source.. = 17 | src.includes = feature.xml,\ 18 | build.properties,\ 19 | epl-v10.html,\ 20 | license.html,\ 21 | feature.properties 22 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2008 Ketan Padegaonkar and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # Ketan Padegaonkar - initial API and implementation 10 | ############################################################################### 11 | bin.includes = feature.xml,\ 12 | license.html,\ 13 | epl-v10.html,\ 14 | feature.properties 15 | jars.compile.order = . 16 | source.. = 17 | src.includes = feature.xml,\ 18 | build.properties,\ 19 | epl-v10.html,\ 20 | license.html,\ 21 | feature.properties 22 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.junit4.headless/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2010 Ketan Padegaonkar and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # Ketan Padegaonkar - initial API and implementation 10 | ############################################################################### 11 | bin.includes = META-INF/,\ 12 | plugin.xml,\ 13 | library.xml,\ 14 | about.html,\ 15 | LICENSE.EPL,\ 16 | src/,\ 17 | .,\ 18 | JUNIT.XSL 19 | src.includes = library.xml,\ 20 | LICENSE.EPL,\ 21 | about.html 22 | source.. = src/ 23 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.junit3.headless/build.properties: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Copyright (c) 2008, 2010 Ketan Padegaonkar and others. 3 | # All rights reserved. This program and the accompanying materials 4 | # are made available under the terms of the Eclipse Public License v1.0 5 | # which accompanies this distribution, and is available at 6 | # http://www.eclipse.org/legal/epl-v10.html 7 | # 8 | # Contributors: 9 | # Ketan Padegaonkar - initial API and implementation 10 | ############################################################################### 11 | bin.includes = META-INF/,\ 12 | plugin.xml,\ 13 | library.xml,\ 14 | about.html,\ 15 | LICENSE.EPL,\ 16 | src/,\ 17 | .,\ 18 | JUNIT.XSL 19 | src.includes = library.xml,\ 20 | LICENSE.EPL,\ 21 | about.html 22 | source.. = src/ 23 | -------------------------------------------------------------------------------- /examples/gef/org.eclipse.gef.examples.logic/src/org/eclipse/gef/examples/logicdesigner/model/Gate.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright (c) 2000, 2005 IBM Corporation and others. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * IBM Corporation - initial API and implementation 10 | *******************************************************************************/ 11 | package org.eclipse.gef.examples.logicdesigner.model; 12 | 13 | abstract public class Gate 14 | extends SimpleOutput 15 | { 16 | 17 | static final long serialVersionUID = 1; 18 | public static String 19 | TERMINAL_A = "A", //$NON-NLS-1$ 20 | TERMINAL_B = "B"; //$NON-NLS-1$ 21 | 22 | } 23 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.swt.finder.test/src/org/eclipse/swtbot/swt/finder/matchers/ObjectWithGetText.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright (c) 2008 Ketan Padegaonkar and others. 3 | * All rights reserved. This program and the accompanying materials 4 | * are made available under the terms of the Eclipse Public License v1.0 5 | * which accompanies this distribution, and is available at 6 | * http://www.eclipse.org/legal/epl-v10.html 7 | * 8 | * Contributors: 9 | * Ketan Padegaonkar - initial API and implementation 10 | *******************************************************************************/ 11 | package org.eclipse.swtbot.swt.finder.matchers; 12 | 13 | public class ObjectWithGetText { 14 | private final String text; 15 | 16 | /** 17 | * @param text 18 | */ 19 | public ObjectWithGetText(String text) { 20 | this.text = text; 21 | } 22 | 23 | public String getText() { 24 | return text; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /org.eclipse.swtbot.eclipse.dsl/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: SWTBot Dsl for Eclipse IDE (incubation) 4 | Bundle-SymbolicName: org.eclipse.swtbot.eclipse.dsl 5 | Bundle-Version: 2.0.5.qualifier 6 | Bundle-Activator: org.eclipse.swtbot.eclipse.dsl.Activator 7 | Bundle-Vendor: Eclipse.org - SWTBot 8 | Bundle-RequiredExecutionEnvironment: J2SE-1.5 9 | Bundle-ActivationPolicy: lazy 10 | Import-Package: org.apache.log4j;version="[1.2.13,1.3.0)", 11 | org.eclipse.core.runtime;version="3.4.0", 12 | org.eclipse.swt.widgets, 13 | org.eclipse.swtbot.eclipse.finder, 14 | org.eclipse.swtbot.eclipse.finder.widgets, 15 | org.eclipse.swtbot.swt.finder, 16 | org.eclipse.swtbot.swt.finder.finders, 17 | org.eclipse.swtbot.swt.finder.results, 18 | org.eclipse.swtbot.swt.finder.utils, 19 | org.eclipse.swtbot.swt.finder.widgets, 20 | org.eclipse.ui, 21 | org.eclipse.ui.plugin, 22 | org.hamcrest;version="1.1.0", 23 | org.osgi.framework;version="1.4.0" 24 | --------------------------------------------------------------------------------