Package org.jboss.ide.eclipse.freemarker.model

Examples of org.jboss.ide.eclipse.freemarker.model.CompletionDirective


              break;
            if (c == LexicalConstants.LEFT_ANGLE_BRACKET || c == LexicalConstants.LEFT_SQUARE_BRACKET) {
              if (editor.getDocument().getLength() > i) {
                char c2 = editor.getDocument().getChar(i + 1);
                if (c2 == LexicalConstants.HASH) {
                  CompletionDirective completionDirective = new CompletionDirective(
                      editor.getItemSet(), i, offset - i,
                      (ISourceViewer) viewer,
                      (IResource) editor.getFile());
                  return completionDirective
                      .getCompletionProposals(offset,
                          context);
                } else if (c2 == LexicalConstants.AT) {
                  CompletionMacroInstance completionMacroInstance = new CompletionMacroInstance(
                      editor.getItemSet(), editor
View Full Code Here

TOP

Related Classes of org.jboss.ide.eclipse.freemarker.model.CompletionDirective

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.