Search in sources :

Example 1 with CollectionElementInvocationHandler

use of com.intellij.util.xml.impl.CollectionElementInvocationHandler in project intellij-community by JetBrains.

the class DomStub method getOrCreateHandler.

public synchronized DomInvocationHandler getOrCreateHandler(DomChildDescriptionImpl description, DomManagerImpl manager) {
    if (myHandler == null) {
        XmlName name = description.getXmlName();
        EvaluatedXmlNameImpl evaluatedXmlName = EvaluatedXmlNameImpl.createEvaluatedXmlName(name, name.getNamespaceKey(), true);
        myHandler = new CollectionElementInvocationHandler(evaluatedXmlName, description, manager, (ElementStub) this);
    }
    return myHandler;
}
Also used : EvaluatedXmlNameImpl(com.intellij.util.xml.EvaluatedXmlNameImpl) XmlName(com.intellij.util.xml.XmlName) CollectionElementInvocationHandler(com.intellij.util.xml.impl.CollectionElementInvocationHandler)

Aggregations

EvaluatedXmlNameImpl (com.intellij.util.xml.EvaluatedXmlNameImpl)1 XmlName (com.intellij.util.xml.XmlName)1 CollectionElementInvocationHandler (com.intellij.util.xml.impl.CollectionElementInvocationHandler)1