Package org.swingml

Examples of org.swingml.SubmittingThread


    public void add(Component aComponent, Object aConstraints) {
        super.add(aComponent, aConstraints);
    }

    public void submit(String anAddress) {
        SubmittingThread theThread = new SubmittingThread(anAddress, this, this, true);
        theThread.start();
    }
View Full Code Here


        theThread.start();
    }

    public void submit(String anAddress, String aTargetContainer, boolean aRepaint) {
        Component theTargetContainer = this.eventHandler.findActionTarget(super.getTopLevelAncestor(), aTargetContainer);
        SubmittingThread theThread = new SubmittingThread(anAddress, this, (Container) theTargetContainer, aRepaint);
        theThread.start();
    }
View Full Code Here

            super.setLocation(theX, theY);
        }
    }

    public void submit(String anAddress) {
        SubmittingThread theThread = new SubmittingThread(anAddress, this, this, true);
        theThread.start();
    }
View Full Code Here

        theThread.start();
    }

    public void submit(String anAddress, String aTargetContainer, boolean aRepaint) {
        Component theTargetContainer = this.eventHandler.findActionTarget(super.getTopLevelAncestor(), aTargetContainer);
        SubmittingThread theThread = new SubmittingThread(anAddress, this, (Container) theTargetContainer, aRepaint);
        theThread.start();
    }
View Full Code Here

            SwingMLLogger.getInstance().log(e);
        }
    }

    public void submit(String anAddress) {
        SubmittingThread theThread = new SubmittingThread(anAddress, this, this, true);
        theThread.start();
    }
View Full Code Here

        theThread.start();
    }

    public void submit(String anAddress, String aTargetContainer, boolean aRepaint) {
        Component theTargetContainer = this.eventHandler.findActionTarget(super.getTopLevelAncestor(), aTargetContainer);
        SubmittingThread theThread = new SubmittingThread(anAddress, this, (Container) theTargetContainer, aRepaint);
        theThread.start();
    }
View Full Code Here

TOP

Related Classes of org.swingml.SubmittingThread

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.