Package wicketforge.psi.references

Examples of wicketforge.psi.references.ClassWicketIdReferenceProvider


                    //
                    PsiJavaPatterns.psiElement(PsiLiteralExpression.class).withParent(PsiExpressionList.class).withSuperParent(2, PsiCallExpression.class),
                    // for Anonymous create like Link's...
                    PsiJavaPatterns.psiElement(PsiLiteralExpression.class).withParent(PsiExpressionList.class).withSuperParent(2, PsiAnonymousClass.class).withSuperParent(3, PsiCallExpression.class)
            );
            registrar.registerReferenceProvider(pattern, new ClassWicketIdReferenceProvider());
        }

        {// html -> wicket:id
            XmlAttributeValuePattern pattern = XmlPatterns.xmlAttributeValue(XmlPatterns.xmlAttribute().withName(Constants.WICKET_ID));
            registrar.registerReferenceProvider(pattern, new MarkupWicketIdReferenceProvider());
View Full Code Here

TOP

Related Classes of wicketforge.psi.references.ClassWicketIdReferenceProvider

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.