blob: 3e0420c7c0cfe942369f816011bbd5afa34fd272 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 IBM Corporation and Others
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Hisashi MIYASHITA - initial API and implementation
*******************************************************************************/
package org.eclipse.actf.model.dom.dombycom.impl;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
public class EmptyNodeListImpl implements NodeList {
public static final NodeList INSTANCE = new EmptyNodeListImpl();
public Node item(int index) {
return null;
}
public int getLength() {
return 0;
}
private EmptyNodeListImpl() {
}
}