JAVA Apache Wicket ProgressBar Setup

The ShieldUI Barcode Apache Wicket component offers streamlined setup and deployment of our libraries.

Since it is a wrapper of our JavaScript ProgressBar widget, you need to include the references to the CSS and JavaScript resources in the HEAD section of your webpage:

<!DOCTYPE html>
<html>
<head>
<title>Shield UI ProgressBar</title>
<meta charset="utf-8" />

<link rel="stylesheet" type="text/css" href="css/light/all.min.css" />
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="js/shieldui-all.min.js"></script>

</head>
<body>
    <div wicket:id="progress" style="width:400px; height:40px;"></div>
</body>
</html>

Then init the progressbar and add it to your wicket page like in the following example:

ProgressBar progress = new ProgressBar("progress");
add(progress);

// get runtime instance in order to get some statistics
Runtime instance = Runtime.getRuntime();

// get total and used memory in mb
int mb = 1024 * 1024;
long total = instance.totalMemory() / mb;
long used = total - instance.freeMemory() / mb;
        
progress.getOptions()
    .setMin(0)
    .setMax(total)
    .setValue(used)
    .getText()
        .setEnabled(true)
        .setTemplate("{0} of " + total + " MB");

To see more information on this wrapper, please refer to the following startup guide.