Skip to content

Commit

Permalink
org.htmlunit.cssparser
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Mar 11, 2023
1 parent caa7d06 commit df5a9c1
Show file tree
Hide file tree
Showing 121 changed files with 462 additions and 462 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
</execution>
</executions>
<configuration>
<basedir>${project.build.directory}/generated-sources/javacc/org/htmlunit/css/parser/javacc</basedir>
<basedir>${project.build.directory}/generated-sources/javacc/org/htmlunit/cssparser/parser/javacc</basedir>
<includes>
<include>CSS3Parser.java</include>

Expand Down Expand Up @@ -195,7 +195,7 @@
<version>3.4.1</version>
<configuration>
<additionalparam>--allow-script-in-comments</additionalparam>
<excludePackageNames>org.htmlunit.css.parser.javacc</excludePackageNames>
<excludePackageNames>org.htmlunit.cssparser.parser.javacc</excludePackageNames>
</configuration>
<executions>
<execution>
Expand Down Expand Up @@ -270,7 +270,7 @@
<links>
<link>http://docs.oracle.com/javase/8/docs/api/</link>
</links>
<excludePackageNames>org.htmlunit.css.parser.javacc</excludePackageNames>
<excludePackageNames>org.htmlunit.cssparser.parser.javacc</excludePackageNames>
</configuration>
</plugin>
<plugin>
Expand Down
19 changes: 0 additions & 19 deletions src/main/java/org/htmlunit/css/parser/selector/package-info.java

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.htmlunit.css.dom;
package org.htmlunit.cssparser.dom;

import java.io.Serializable;

import org.htmlunit.css.parser.AbstractLocatable;
import org.htmlunit.cssparser.parser.AbstractLocatable;

/**
* @author Ronald Brill
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.htmlunit.css.dom;
package org.htmlunit.cssparser.dom;

import java.io.IOException;

import org.htmlunit.css.parser.CSSException;
import org.htmlunit.css.parser.CSSOMParser;
import org.htmlunit.css.util.LangUtils;
import org.htmlunit.cssparser.parser.CSSException;
import org.htmlunit.cssparser.parser.CSSOMParser;
import org.htmlunit.cssparser.util.LangUtils;
import org.w3c.dom.DOMException;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.htmlunit.css.dom;
package org.htmlunit.cssparser.dom;

import java.io.IOException;

import org.htmlunit.css.parser.CSSException;
import org.htmlunit.css.parser.CSSOMParser;
import org.htmlunit.css.util.LangUtils;
import org.htmlunit.cssparser.parser.CSSException;
import org.htmlunit.cssparser.parser.CSSOMParser;
import org.htmlunit.cssparser.util.LangUtils;
import org.w3c.dom.DOMException;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.htmlunit.css.dom;
package org.htmlunit.cssparser.dom;

import java.io.IOException;

import org.htmlunit.css.parser.CSSException;
import org.htmlunit.css.parser.CSSOMParser;
import org.htmlunit.css.util.LangUtils;
import org.htmlunit.cssparser.parser.CSSException;
import org.htmlunit.cssparser.parser.CSSOMParser;
import org.htmlunit.cssparser.util.LangUtils;
import org.w3c.dom.DOMException;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.htmlunit.css.dom;
package org.htmlunit.cssparser.dom;

import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;

import org.htmlunit.css.parser.CSSException;
import org.htmlunit.css.parser.CSSOMParser;
import org.htmlunit.css.util.LangUtils;
import org.htmlunit.css.util.ThrowCssExceptionErrorHandler;
import org.htmlunit.cssparser.parser.CSSException;
import org.htmlunit.cssparser.parser.CSSOMParser;
import org.htmlunit.cssparser.util.LangUtils;
import org.htmlunit.cssparser.util.ThrowCssExceptionErrorHandler;
import org.w3c.dom.DOMException;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.htmlunit.css.dom;
package org.htmlunit.cssparser.dom;

import java.io.IOException;

import org.htmlunit.css.parser.CSSException;
import org.htmlunit.css.parser.CSSOMParser;
import org.htmlunit.css.util.LangUtils;
import org.htmlunit.css.util.ThrowCssExceptionErrorHandler;
import org.htmlunit.cssparser.parser.CSSException;
import org.htmlunit.cssparser.parser.CSSOMParser;
import org.htmlunit.cssparser.util.LangUtils;
import org.htmlunit.cssparser.util.ThrowCssExceptionErrorHandler;
import org.w3c.dom.DOMException;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.htmlunit.css.dom;
package org.htmlunit.cssparser.dom;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;

import org.htmlunit.css.util.LangUtils;
import org.htmlunit.cssparser.util.LangUtils;

/**
* Implementation of CSSRuleList.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.htmlunit.css.dom;
package org.htmlunit.cssparser.dom;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;

import org.htmlunit.css.parser.CSSErrorHandler;
import org.htmlunit.css.parser.CSSOMParser;
import org.htmlunit.css.util.LangUtils;
import org.htmlunit.css.util.ThrowCssExceptionErrorHandler;
import org.htmlunit.cssparser.parser.CSSErrorHandler;
import org.htmlunit.cssparser.parser.CSSOMParser;
import org.htmlunit.cssparser.util.LangUtils;
import org.htmlunit.cssparser.util.ThrowCssExceptionErrorHandler;
import org.w3c.dom.DOMException;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.htmlunit.css.dom;
package org.htmlunit.cssparser.dom;

import java.io.IOException;

import org.htmlunit.css.parser.CSSException;
import org.htmlunit.css.parser.CSSOMParser;
import org.htmlunit.css.parser.selector.SelectorList;
import org.htmlunit.css.util.LangUtils;
import org.htmlunit.cssparser.parser.CSSException;
import org.htmlunit.cssparser.parser.CSSOMParser;
import org.htmlunit.cssparser.parser.selector.SelectorList;
import org.htmlunit.cssparser.util.LangUtils;
import org.w3c.dom.DOMException;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.htmlunit.css.dom;
package org.htmlunit.cssparser.dom;

import java.io.IOException;
import java.io.ObjectInputStream;
Expand All @@ -26,14 +26,14 @@
import java.util.List;
import java.util.Map;

import org.htmlunit.css.parser.CSSException;
import org.htmlunit.css.parser.CSSOMParser;
import org.htmlunit.css.parser.media.MediaQuery;
import org.htmlunit.css.parser.media.MediaQueryList;
import org.htmlunit.css.parser.selector.ElementSelector;
import org.htmlunit.css.parser.selector.Selector;
import org.htmlunit.css.util.LangUtils;
import org.htmlunit.css.util.ThrowCssExceptionErrorHandler;
import org.htmlunit.cssparser.parser.CSSException;
import org.htmlunit.cssparser.parser.CSSOMParser;
import org.htmlunit.cssparser.parser.media.MediaQuery;
import org.htmlunit.cssparser.parser.media.MediaQueryList;
import org.htmlunit.cssparser.parser.selector.ElementSelector;
import org.htmlunit.cssparser.parser.selector.Selector;
import org.htmlunit.cssparser.util.LangUtils;
import org.htmlunit.cssparser.util.ThrowCssExceptionErrorHandler;
import org.w3c.dom.DOMException;
import org.w3c.dom.Node;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.htmlunit.css.dom;
package org.htmlunit.cssparser.dom;

import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

import org.htmlunit.css.util.LangUtils;
import org.htmlunit.cssparser.util.LangUtils;

/**
* Implementation of StyleSheetList.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.htmlunit.css.dom;
package org.htmlunit.cssparser.dom;

import java.io.IOException;

import org.htmlunit.css.parser.CSSException;
import org.htmlunit.css.parser.CSSOMParser;
import org.htmlunit.css.util.LangUtils;
import org.htmlunit.cssparser.parser.CSSException;
import org.htmlunit.cssparser.parser.CSSOMParser;
import org.htmlunit.cssparser.util.LangUtils;
import org.w3c.dom.DOMException;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.htmlunit.css.dom;
package org.htmlunit.cssparser.dom;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

import org.htmlunit.css.parser.AbstractLocatable;
import org.htmlunit.css.parser.CSSOMParser;
import org.htmlunit.css.parser.LexicalUnit;
import org.htmlunit.css.parser.LexicalUnit.LexicalUnitType;
import org.htmlunit.css.parser.LexicalUnitImpl;
import org.htmlunit.css.util.LangUtils;
import org.htmlunit.cssparser.parser.AbstractLocatable;
import org.htmlunit.cssparser.parser.CSSOMParser;
import org.htmlunit.cssparser.parser.LexicalUnit;
import org.htmlunit.cssparser.parser.LexicalUnit.LexicalUnitType;
import org.htmlunit.cssparser.parser.LexicalUnitImpl;
import org.htmlunit.cssparser.util.LangUtils;
import org.w3c.dom.DOMException;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.htmlunit.css.dom;
package org.htmlunit.cssparser.dom;

import java.io.Serializable;

import org.htmlunit.css.parser.LexicalUnit;
import org.htmlunit.css.parser.LexicalUnit.LexicalUnitType;
import org.htmlunit.cssparser.parser.LexicalUnit;
import org.htmlunit.cssparser.parser.LexicalUnit.LexicalUnitType;
import org.w3c.dom.DOMException;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.htmlunit.css.dom;
package org.htmlunit.cssparser.dom;

import org.w3c.dom.DOMException;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.htmlunit.css.dom;
package org.htmlunit.cssparser.dom;

import java.io.Serializable;
import java.util.Locale;

import org.htmlunit.css.parser.LexicalUnit;
import org.htmlunit.css.parser.LexicalUnit.LexicalUnitType;
import org.htmlunit.cssparser.parser.LexicalUnit;
import org.htmlunit.cssparser.parser.LexicalUnit.LexicalUnitType;
import org.w3c.dom.DOMException;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.htmlunit.css.dom;
package org.htmlunit.cssparser.dom;

import java.io.IOException;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;

import org.htmlunit.css.parser.AbstractLocatable;
import org.htmlunit.css.parser.CSSOMParser;
import org.htmlunit.css.parser.CSSParseException;
import org.htmlunit.css.parser.media.MediaQuery;
import org.htmlunit.css.parser.media.MediaQueryList;
import org.htmlunit.css.util.LangUtils;
import org.htmlunit.css.util.ThrowCssExceptionErrorHandler;
import org.htmlunit.cssparser.parser.AbstractLocatable;
import org.htmlunit.cssparser.parser.CSSOMParser;
import org.htmlunit.cssparser.parser.CSSParseException;
import org.htmlunit.cssparser.parser.media.MediaQuery;
import org.htmlunit.cssparser.parser.media.MediaQueryList;
import org.htmlunit.cssparser.util.LangUtils;
import org.htmlunit.cssparser.util.ThrowCssExceptionErrorHandler;
import org.w3c.dom.DOMException;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.htmlunit.css.dom;
package org.htmlunit.cssparser.dom;

import java.io.Serializable;

import org.htmlunit.css.parser.AbstractLocatable;
import org.htmlunit.css.util.LangUtils;
import org.htmlunit.cssparser.parser.AbstractLocatable;
import org.htmlunit.cssparser.util.LangUtils;

/**
* @author Ronald Brill
Expand Down
Loading

0 comments on commit df5a9c1

Please sign in to comment.