Sign in
eclipse
/
objectteams
/
org.eclipse.objectteams
/
ceb4818d79ac495c51f188b9fdc631d7d4fcc8d6
/
.
/
othersrc
/
JCLMin1.5
/
src
/
java
/
lang
/
Thread.java
blob: fbe8a3d87d47efa1e256a6621043498ce50ee98f [
file
]
package
java
.
lang
;
public
class
Thread
implements
Runnable
{
public
void
run
()
{
}
public
static
Thread
currentThread
()
{
return
null
;
}
public
boolean
isAlive
()
{
return
true
;
}
}