Skip to content

Commit

Permalink
Added java and class files
Browse files Browse the repository at this point in the history
  • Loading branch information
xrd committed Dec 28, 2010
1 parent 42844d0 commit 054d5cc
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
With Apple's recent decision to stop shipping java as a default, and the current state of the union on Windows,
you cannot rely on having java inside a browser. This plugin gives you a simple interface to check for the existence
of java so that you can choose before loading a larger applet.
Binary file added class/hasJava.class
Binary file not shown.
12 changes: 12 additions & 0 deletions java/hasJava.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import java.applet.Applet;

public class hasJava extends Applet {

public void init() {
}

public String yes() {
return "yes";
}

}

0 comments on commit 054d5cc

Please sign in to comment.