Package com.volantis.mcs.eclipse.builder.common

Examples of com.volantis.mcs.eclipse.builder.common.BuilderSelectionEvent


     * @param oldVariant The previously selected variant
     * @param newVariant The new selected variant
     */
    private void fireSelectedVariantChanged(BeanProxy oldVariant, BeanProxy newVariant) {
        if (!variantSelectionListeners.isEmpty()) {
            BuilderSelectionEvent event = new BuilderSelectionEvent(this, oldVariant, newVariant);
            Iterator it = variantSelectionListeners.iterator();
            while (it.hasNext()) {
                BuilderSelectionListener listener = (BuilderSelectionListener) it.next();
                listener.selectionMade(event);
            }
View Full Code Here

TOP

Related Classes of com.volantis.mcs.eclipse.builder.common.BuilderSelectionEvent

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.