Package org.objectstyle.wolips.core.resources.types

Examples of org.objectstyle.wolips.core.resources.types.TypeNameCollector.types()


    }
    else if ("Direct Actions".equals(defaultsName)) {
      if (partialValue != null && partialValue.startsWith("\"")) {
        TypeNameCollector typeNameCollector = new TypeNameCollector("com.webobjects.appserver.WODirectAction", javaProject, false);
        BindingReflectionUtils.findMatchingElementClassNames("", SearchPattern.R_PREFIX_MATCH, typeNameCollector, new NullProgressMonitor());
        for (IType type : typeNameCollector.types()) {
          IMethod[] methods = type.getMethods();
          for (IMethod method : methods) {
            String name = method.getElementName();
            if (name.endsWith("Action") && method.getParameterNames().length == 0) {
              validValues.add("\"" + name.substring(0, name.length() - "Action".length()) + "\"");
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.