org.apache.myfaces.trinidad.change.RemoveChildComponentChange Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trinidad-api Show documentation
Show all versions of trinidad-api Show documentation
Public API for the Apache MyFaces Trinidad project
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.myfaces.trinidad.change;
import java.util.List;
import javax.faces.component.UIComponent;
import org.w3c.dom.NamedNodeMap;
import org.w3c.dom.Node;
import org.apache.myfaces.trinidad.logging.TrinidadLogger;
/**
* Change specialization for removal of a child.
* While applying this Change, if there were to be a child with the specified
* identifier, it will be removed.
* @version $Name: $ ($Revision: adfrt/faces/adf-faces-api/src/main/java/oracle/adf/view/faces/change/RemoveChildComponentChange.java#0 $) $Date: 10-nov-2005.19:10:00 $
*/
public class RemoveChildComponentChange extends ComponentChange
implements DocumentChange
{
/**
* Constructs a RemoveChildChange with the specified identifier of the child.
* @param childId The identifier of the child component that needs to be
* removed. If no identifier is specified, the type will be treated
* as of 'id' type.
* @throws IllegalArgumentException if specified childId were to be null.
*/
public RemoveChildComponentChange(String childId)
{
this(childId, "id");
}
/**
* Constructs a RemoveChildChange with the specified identifier of the child.
* @param childId The identifier of the child component that needs to be
* removed.
* @param identifier Determines the type of identifier which is passed as the
* first argument.
* @throws IllegalArgumentException if specified childId were to be null.
*/
public RemoveChildComponentChange(String childId, String identifier)
{
if ((childId == null) || (childId.length() == 0))
throw new IllegalArgumentException(_LOG.getMessage(
"CANNOT_CONSTRUCT_REMOVECHILDCHANGE_WITH_NULL_ID"));
if (identifier == null || "".equals(identifier))
throw new IllegalArgumentException(_LOG.getMessage(
"IDENTIFIER_TYPE_CANNOT_BE_NULL"));
_childId = childId;
_identifier = identifier;
}
/**
* Returns the identifier of child component that needs to be removed.
*/
public String getChildId()
{
return _childId;
}
/**
* Returns the identifier type.
*/
public final String getIdentifier()
{
return _identifier;
}
/**
* {@inheritDoc}
*/
@SuppressWarnings("unchecked")
@Override
public void changeComponent(UIComponent uiComponent)
{
if (uiComponent.getChildCount() == 0)
return;
List children = uiComponent.getChildren();
children.remove(ChangeUtils.getChildForId(uiComponent, _childId, _identifier));
}
/**
* {@inheritDoc}
*/
public void changeDocument(Node componentNode)
{
Node currChild = componentNode.getFirstChild();
while (currChild != null)
{
NamedNodeMap attributes = currChild.getAttributes();
if (attributes != null)
{
Node idAttr = attributes.getNamedItem(_identifier);
if (idAttr != null)
{
if (_childId.equals(idAttr.getNodeValue()))
{
currChild.getParentNode().removeChild(currChild);
break;
}
}
}
currChild = currChild.getNextSibling();
}
}
/**
* Returns true if adding the DocumentChange should force the JSP Document
* to reload
*/
public boolean getForcesDocumentReload()
{
return false;
}
private final String _childId;
private final String _identifier;
private static final TrinidadLogger _LOG = TrinidadLogger.createTrinidadLogger(
RemoveChildComponentChange.class);
private static final long serialVersionUID = 1L;
}