com.phloc.commons.microdom.impl.MicroContainer Maven / Gradle / Ivy
/**
* Copyright (C) 2006-2015 phloc systems
* http://www.phloc.com
* office[at]phloc[dot]com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.phloc.commons.microdom.impl;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import com.phloc.commons.microdom.EMicroNodeType;
import com.phloc.commons.microdom.IMicroContainer;
import com.phloc.commons.microdom.IMicroNode;
/**
* Default implementation of the {@link IMicroContainer} interface.
*
* @author Philip Helger
*/
public final class MicroContainer extends AbstractMicroNodeWithChildren implements IMicroContainer
{
public MicroContainer ()
{}
public MicroContainer (@Nullable final IMicroNode... aChildNodes)
{
if (aChildNodes != null)
for (final IMicroNode aChildNode : aChildNodes)
appendChild (aChildNode);
}
public MicroContainer (@Nullable final Iterable extends IMicroNode> aChildNodes)
{
if (aChildNodes != null)
for (final IMicroNode aChildNode : aChildNodes)
appendChild (aChildNode);
}
@Nonnull
public EMicroNodeType getType ()
{
return EMicroNodeType.CONTAINER;
}
@Nonnull
public String getNodeName ()
{
return "#container";
}
@Nonnull
public IMicroContainer getClone ()
{
final IMicroContainer ret = new MicroContainer ();
if (hasChildren ())
for (final IMicroNode aChildNode : getChildren ())
ret.appendChild (aChildNode.getClone ());
return ret;
}
/**
* Create a new {@link IMicroContainer} that contains clones of all passed
* nodes
*
* @param aChildNodes
* The micro node array to add to the {@link IMicroContainer}
* @return The created {@link IMicroContainer} and never null
.
*/
@Nonnull
public static IMicroContainer createWithClones (@Nullable final IMicroNode... aChildNodes)
{
final IMicroContainer ret = new MicroContainer ();
if (aChildNodes != null)
for (final IMicroNode aChildNode : aChildNodes)
ret.appendChild (aChildNode == null ? null : aChildNode.getClone ());
return ret;
}
/**
* Create a new {@link IMicroContainer} that contains clones of all passed
* nodes
*
* @param aChildNodes
* The micro node container to add to the {@link IMicroContainer}
* @return The created {@link IMicroContainer} and never null
.
*/
@Nonnull
public static IMicroContainer createWithClones (@Nullable final Iterable extends IMicroNode> aChildNodes)
{
final IMicroContainer ret = new MicroContainer ();
if (aChildNodes != null)
for (final IMicroNode aChildNode : aChildNodes)
ret.appendChild (aChildNode == null ? null : aChildNode.getClone ());
return ret;
}
}