Examples of processActions()


Examples of com.intellij.struts2.dom.struts.model.StrutsModel.processActions()

    }

    final String actionExtension = actionExtensions.get(0);

    @NonNls final ArrayList<String> list = new ArrayList<String>();
    combinedModel.processActions(new Processor<Action>() {
      public boolean process(final Action action) {
        for (final Result result : action.getResults()) {
          final PathReference pathReference = result.getValue();
          if (pathReference != null) {
            final PsiElement psiElement = pathReference.resolve();
View Full Code Here

Examples of com.intellij.struts2.dom.struts.model.StrutsModel.processActions()

    final StrutsModel strutsModel = StrutsManager.getInstance(module.getProject()).getCombinedModel(module);
    if (strutsModel == null) {
      return;
    }

    strutsModel.processActions(new Processor<Action>() {
      public boolean process(final Action action) {
        result.add(action.getName().getStringValue());
        return true;
      }
    });
View Full Code Here

Examples of com.intellij.struts2.dom.struts.model.StrutsModel.processActions()

    final List<PsiFile> allFiles = containingFile.getViewProvider().getAllFiles();

    final Set<Action> actions = new HashSet<Action>();
    final List<GotoRelatedItem> items = new ArrayList<GotoRelatedItem>();
    strutsModel.processActions(new Processor<Action>() {
      @Override
      public boolean process(final Action action) {
        for (final Result result : action.getResults()) {

          final PathReference pathReference = result.getValue();
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.