Package org.eclipse.dltk.internal.core

Examples of org.eclipse.dltk.internal.core.SourceMethod


        public String getText(Object element)
        {

            if (element instanceof SourceMethod) {

                SourceMethod m = (SourceMethod) element;
                String[] parameters;

                try {
                    parameters = m.getParameterNames();

                    if (parameters != null && parameters.length > 0) {
                        return m.getElementName() + " - " + parameters[0];
                    }

                } catch (ModelException e) {

                    e.printStackTrace();
                }

                return m.getElementName();

            }

            return super.getText(element);
        }
View Full Code Here

TOP

Related Classes of org.eclipse.dltk.internal.core.SourceMethod

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.