Skip to content

Commit 4c18e5f

Browse files
committed
Merge pull request #20 from jacobsallan/swingtut
closing issue #3 for tutorials that currently work. (see issue for comments/chat) As discussed in issue #3 all tutorial examples that currently don't have a scala-swing api will be submitted via its own pull request.
2 parents 2a56471 + 19fd1b4 commit 4c18e5f

File tree

119 files changed

+3644
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

119 files changed

+3644
-2
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ build.properties
3232
/.cache
3333
/.idea
3434
/.settings
35+
/examples/.classpath
36+
/examples/.project
37+
scala-swing.iml
3538

3639
# bak files produced by ./cleanup-commit
3740
*.bak
@@ -42,4 +45,4 @@ qbin
4245
# Mac specific, but that is common enough a dev platform to warrant inclusion.
4346
.DS_Store
4447

45-
target/
48+
target/

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: scala
22
script:
3-
- sbt ++$TRAVIS_SCALA_VERSION clean update compile test
3+
- sbt ++$TRAVIS_SCALA_VERSION clean update compile test examples/compile
44
scala:
55
- 2.11.1
66

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
2+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
3+
<html lang="en-us">
4+
<title>Styled Text Sample</title>
5+
<body>
6+
<img src="images/dukeWaveRed.gif" width="64" height="64" alt="Waving Duke icon"/>
7+
<p>This is an uneditable <code>EditorPane</code>,
8+
which was <em>initialized</em>
9+
with <strong>HTML</strong> text <font size=-2>from</font> a
10+
<font size=+2>URL</font>.
11+
</p>
12+
An editor pane uses specialized editor kits
13+
to read, write, display, and edit text of
14+
different formats.
15+
The Swing text package includes editor kits
16+
for plain text, HTML, and RTF.
17+
You can also develop
18+
custom editor kits for other formats.
19+
<!-- Start SiteCatalyst code -->
20+
<script type="text/javascript" language="JavaScript" src="http://www.oracle.com/ocom/groups/systemobject/@mktg_admin/documents/systemobject/s_code_download.js"></script>
21+
<script type="text/javascript" language="JavaScript" src="http://www.oracle.com/ocom/groups/systemobject/@mktg_admin/documents/systemobject/s_code.js"></script>
22+
<noscript>
23+
A browser with JavaScript enabled is required for this page to operate properly.
24+
</noscript>
25+
26+
<!-- ********** DO NOT ALTER ANYTHING BELOW THIS LINE ! *********** -->
27+
<!-- Below code will send the info to Omniture server -->
28+
<script type="text/javascript" language="javascript">var s_code=s.t();if(s_code)document.write(s_code)</script>
29+
30+
<!-- End SiteCatalyst code -->
31+
</body>
32+
</html>
422 Bytes
5.25 KB
3.29 KB
3.5 KB
2.28 KB
434 Bytes
228 Bytes

0 commit comments

Comments
 (0)