All Classes and Interfaces

Class
Description
 
 
 
 
 
 
 
 
 
 
This class provides encode/decode for RFC 2045 Base64 as defined by RFC 2045, N.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Utility class for encrypting/decrypting files.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
empty icon.
 
 
 
 
 
This class makes it easy to drag and drop files from the operating system to a Java program.
At last an easy way to encapsulate your custom objects for dragging and dropping in your Java programs! When you need to create a Transferable object, use this class to wrap your object.
Instead of passing your data directly to the FileDrop.TransferableObject constructor, you may want to know exactly when your data was received in case you need to remove it from its source (or do anyting else to it).
This is the event that is passed to the filesDropped(...) method in your FileDropListener when files are dropped onto a registered drop target.
Implement this inner interface to listen for when files are dropped.
 
 
 
 
 
https://stackoverflow.com/questions/45603312/smooth-gradient-background-animation-java
 
 
 
 
 
Component Interface Wrapper
Created by IntelliJ IDEA.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
thanks to Marcio Aguiar https://stackoverflow.com/questions/60269/how-to-implement-draggable-tab-using-java-swing
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Created with IntelliJ IDEA.
 
 
Tracks Memory allocated & used, displayed as icon tray .
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
The OverlapLayout class is a layout manager that lays out a container's components in an overlapping fashion.
 
 
 
 
Process process = Runtime.getRuntime().exec(new String[]{"/bin/java","-version"}, null, new File(".")); ProcessWatcher w = new ProcessWatcher(process, new ProcessWatcherHandler() { public void started(Process process) { System.out.println("Prcess started"); } public void stdout(Process process, String line) { System.out.println(line); } public void stderr(Process process, String line) { System.err.println(line); } public void ended(Process process, int value) { System.out.println("Process Shutdown.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
mostly inspired from http://twaver.blogspot.com/2012/07/add-function-autocompletein-jtextfield.html
 
 
 
A container for images.
 
 
thanks to https://www.logicbig.com/tutorials/java-swing/jtree-filtering.html