The Eclipse Java Interactive Development Environment (IDE) allows programmers to easily deploy Java applications through its included code completion functions, built-in debugger, and error checking capabilities. Outside of this, anything that you can do with a Java library can be done in Eclipse. For example, if you wanted to create a delay effect in an Eclipse program, you would use Java’s “Thread” library, and its included “sleep” method. import java.lang.Thread; class TestProject{ public static void main(String[] args){ } } for(int x = 0; x <= 10; x++){ Thread.sleep(1000 * x); } for(int x = 0; x <= 10; x++){ try { Thread.sleep(1000 * x); } catch(InterruptedException e){ Thread.currentThread().interrupt(); } } Writer Bio

How to Get a Delay Effect in Java Eclipse - 13