alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements. See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
package org.apache.axis2.tools.idea;

import javax.swing.*;
import java.awt.*;
import java.lang.reflect.InvocationTargetException;

public class ProgressBarPanel  extends JPanel {
    private  volatile boolean stop = false;
    private static int DELAY = 500;
    public volatile String val=null;
    private JLabel progressDescription;
    private JProgressBar progressSent;

    public ProgressBarPanel (){
        init();
    }
    public  void requestStop() {
        stop = true;
    }
    private void init(){
        setVisible(false);
        progressDescription =new JLabel();
        progressDescription.setText("");
        progressSent =new JProgressBar();
        progressSent.setStringPainted(true);
        this.setLayout(new GridBagLayout());

        this.add(progressDescription
                , new GridBagConstraints(0, 0, GridBagConstraints.REMAINDER, 1,  1.0, 1.0
                , GridBagConstraints.WEST  , GridBagConstraints.HORIZONTAL
                , new Insets(10, 10, 0, 10), 0, 0));

        this.add(progressSent
                , new GridBagConstraints(0, 1, GridBagConstraints.REMAINDER, 1, 1.0, 1.0
                , GridBagConstraints.WEST , GridBagConstraints.HORIZONTAL
                , new Insets(10, 10, 0,10), 0, 0));

    }
    public void setProgressText(String s) {
        progressDescription.setText(s);
    }

    public void setProgressValue(int i) {
        progressSent.setValue(i);
    }
    public void aboutToDisplayPanel() {

        setProgressValue(0);
       // setProgressText("Connecting to Server...");

    }
    public void displayingPanel() {

        Thread t = new Thread() {

            public void run() {

                int minimum = progressSent.getMinimum();
                int maximum =progressSent.getMaximum();
                Runnable runner = new Runnable() {
                    public void run() {
                        if(stop && progressSent .getValue()<75){

                            progressSent .setIndeterminate(false);
                            int value = progressSent .getValue();
                            progressSent .setValue(value+4);
                            setProgressValue(value+4);
                          //  progressDescription .setText("Genarate Code. Please wait.....");
                        } else if(!stop){
                            progressSent .setIndeterminate(true);

                        }
                    }
                };
                for (int i=minimum; i<maximum; i++) {
                    try {
                        SwingUtilities.invokeAndWait(runner);
                        // Our task for each step is to just sleep
                        Thread.sleep(DELAY);
                    } catch (InterruptedException ignoredException) {
                    } catch (InvocationTargetException ignoredException) {
                    }
                }
            }
        };
        t.start();
    }
}
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.