/plugins/maven/src/main/java/org/jetbrains/idea/maven/dom/MavenPluginConfigurationParameterDomExtender.java

https://bitbucket.org/nbargnesi/idea · Java · 35 lines · 18 code · 2 blank · 15 comment · 2 complexity · 0783eef8fe502637f09ccd5a37681723 MD5 · raw file

  1. /*
  2. * Copyright 2000-2009 JetBrains s.r.o.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package org.jetbrains.idea.maven.dom;
  17. import com.intellij.codeInsight.completion.CompletionUtil;
  18. import com.intellij.psi.xml.XmlAttribute;
  19. import com.intellij.util.xml.XmlName;
  20. import com.intellij.util.xml.reflect.DomExtender;
  21. import com.intellij.util.xml.reflect.DomExtensionsRegistrar;
  22. import org.jetbrains.annotations.NotNull;
  23. import org.jetbrains.idea.maven.dom.model.MavenDomConfigurationParameter;
  24. public class MavenPluginConfigurationParameterDomExtender extends DomExtender<MavenDomConfigurationParameter> {
  25. @Override
  26. public void registerExtensions(@NotNull MavenDomConfigurationParameter param, @NotNull DomExtensionsRegistrar r) {
  27. for (XmlAttribute each : param.getXmlTag().getAttributes()) {
  28. String name = each.getName();
  29. if (CompletionUtil.DUMMY_IDENTIFIER_TRIMMED.equals(name)) continue;
  30. r.registerGenericAttributeValueChildExtension(new XmlName(name), String.class);
  31. }
  32. }
  33. }