com.steadystate.css.parser.SelectorListImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cssparser Show documentation
Show all versions of cssparser Show documentation
A CSS parser which implements SAC (the Simple API for CSS).
/*
* CSS Parser Project
*
* Copyright (C) 1999-2011 David Schweinsberg. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* To contact the authors of the library:
*
* http://cssparser.sourceforge.net/
* mailto:[email protected]
*
*/
package com.steadystate.css.parser;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import org.w3c.css.sac.Selector;
import org.w3c.css.sac.SelectorList;
/**
* Implementation of {@link SelectorList}.
*
* @author David Schweinsberg
*/
public class SelectorListImpl extends LocatableImpl implements SelectorList, Serializable {
private static final long serialVersionUID = 7313376916207026333L;
private List selectors_ = new ArrayList(10);
public List getSelectors() {
return selectors_;
}
public void setSelectors(final List selectors) {
selectors_ = selectors;
}
public int getLength() {
return selectors_.size();
}
public Selector item(final int index) {
return selectors_.get(index);
}
public void add(final Selector sel) {
selectors_.add(sel);
}
public String toString() {
final StringBuilder sb = new StringBuilder();
final int len = getLength();
for (int i = 0; i < len; i++) {
sb.append(item(i).toString());
if (i < len - 1) {
sb.append(", ");
}
}
return sb.toString();
}
}