Package org.cfeclipse.frameworks.fusebox.objects

Examples of org.cfeclipse.frameworks.fusebox.objects.FBXObject


             }
             if(event.getSelection() instanceof IStructuredSelection) {
                 IStructuredSelection selection = (IStructuredSelection)event.getSelection();
                 StringBuffer toShow = new StringBuffer();
                 for (Iterator iterator = selection.iterator(); iterator.hasNext();) {
                     FBXObject obj = (FBXObject)iterator.next();
                     helptext.setText(obj.getFusedoc());

                 }
                 // remove the trailing comma space pair
                 if(toShow.length() > 0) {
                     toShow.setLength(toShow.length() - 2);
View Full Code Here

TOP

Related Classes of org.cfeclipse.frameworks.fusebox.objects.FBXObject

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.