update copyright
[fedora-idea.git] / xml / dom-openapi / src / com / intellij / util / xml / model / impl / SimpleDomModelFactory.java
blob72d0e3a6246de517e79ab753a0db52ad262e510c
1 /*
2 * Copyright 2000-2009 JetBrains s.r.o.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 package com.intellij.util.xml.model.impl;
19 import com.intellij.psi.xml.XmlFile;
20 import com.intellij.util.containers.ContainerUtil;
21 import com.intellij.util.xml.DomElement;
22 import com.intellij.util.xml.DomFileElement;
23 import com.intellij.util.xml.ModelMerger;
24 import com.intellij.util.xml.model.DomModel;
25 import com.intellij.util.xml.model.SimpleModelFactory;
26 import org.jetbrains.annotations.NotNull;
27 import org.jetbrains.annotations.Nullable;
29 import java.util.ArrayList;
30 import java.util.List;
31 import java.util.Set;
33 /**
34 * @author Dmitry Avdeev
36 public abstract class SimpleDomModelFactory<T extends DomElement, M extends DomModel<T>> extends DomModelFactoryHelper<T> implements
37 SimpleModelFactory<T, M> {
39 public SimpleDomModelFactory(@NotNull Class<T> aClass, @NotNull ModelMerger modelMerger) {
40 super(aClass, modelMerger);
43 @Nullable
44 public DomFileElement<T> createMergedModelRoot(Set<XmlFile> configFiles) {
45 List<DomFileElement<T>> configs = new ArrayList<DomFileElement<T>>(configFiles.size());
46 for (XmlFile configFile : configFiles) {
47 ContainerUtil.addIfNotNull(getDomRoot(configFile), configs);
49 return configs.isEmpty() ? null : getModelMerger().mergeModels(DomFileElement.class, configs);