Skip to content

Commit df5a9c1

Browse files
committed
org.htmlunit.cssparser
1 parent caa7d06 commit df5a9c1

File tree

121 files changed

+462
-462
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+462
-462
lines changed

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
</execution>
102102
</executions>
103103
<configuration>
104-
<basedir>${project.build.directory}/generated-sources/javacc/org/htmlunit/css/parser/javacc</basedir>
104+
<basedir>${project.build.directory}/generated-sources/javacc/org/htmlunit/cssparser/parser/javacc</basedir>
105105
<includes>
106106
<include>CSS3Parser.java</include>
107107

@@ -195,7 +195,7 @@
195195
<version>3.4.1</version>
196196
<configuration>
197197
<additionalparam>--allow-script-in-comments</additionalparam>
198-
<excludePackageNames>org.htmlunit.css.parser.javacc</excludePackageNames>
198+
<excludePackageNames>org.htmlunit.cssparser.parser.javacc</excludePackageNames>
199199
</configuration>
200200
<executions>
201201
<execution>
@@ -270,7 +270,7 @@
270270
<links>
271271
<link>http://docs.oracle.com/javase/8/docs/api/</link>
272272
</links>
273-
<excludePackageNames>org.htmlunit.css.parser.javacc</excludePackageNames>
273+
<excludePackageNames>org.htmlunit.cssparser.parser.javacc</excludePackageNames>
274274
</configuration>
275275
</plugin>
276276
<plugin>

src/main/java/org/htmlunit/css/parser/selector/package-info.java

Lines changed: 0 additions & 19 deletions
This file was deleted.

src/main/java/org/htmlunit/css/dom/AbstractCSSRuleImpl.java renamed to src/main/java/org/htmlunit/cssparser/dom/AbstractCSSRuleImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
* See the License for the specific language governing permissions and
1313
* limitations under the License.
1414
*/
15-
package org.htmlunit.css.dom;
15+
package org.htmlunit.cssparser.dom;
1616

1717
import java.io.Serializable;
1818

19-
import org.htmlunit.css.parser.AbstractLocatable;
19+
import org.htmlunit.cssparser.parser.AbstractLocatable;
2020

2121
/**
2222
* @author Ronald Brill

src/main/java/org/htmlunit/css/dom/CSSCharsetRuleImpl.java renamed to src/main/java/org/htmlunit/cssparser/dom/CSSCharsetRuleImpl.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
* See the License for the specific language governing permissions and
1313
* limitations under the License.
1414
*/
15-
package org.htmlunit.css.dom;
15+
package org.htmlunit.cssparser.dom;
1616

1717
import java.io.IOException;
1818

19-
import org.htmlunit.css.parser.CSSException;
20-
import org.htmlunit.css.parser.CSSOMParser;
21-
import org.htmlunit.css.util.LangUtils;
19+
import org.htmlunit.cssparser.parser.CSSException;
20+
import org.htmlunit.cssparser.parser.CSSOMParser;
21+
import org.htmlunit.cssparser.util.LangUtils;
2222
import org.w3c.dom.DOMException;
2323

2424
/**

src/main/java/org/htmlunit/css/dom/CSSFontFaceRuleImpl.java renamed to src/main/java/org/htmlunit/cssparser/dom/CSSFontFaceRuleImpl.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
* See the License for the specific language governing permissions and
1313
* limitations under the License.
1414
*/
15-
package org.htmlunit.css.dom;
15+
package org.htmlunit.cssparser.dom;
1616

1717
import java.io.IOException;
1818

19-
import org.htmlunit.css.parser.CSSException;
20-
import org.htmlunit.css.parser.CSSOMParser;
21-
import org.htmlunit.css.util.LangUtils;
19+
import org.htmlunit.cssparser.parser.CSSException;
20+
import org.htmlunit.cssparser.parser.CSSOMParser;
21+
import org.htmlunit.cssparser.util.LangUtils;
2222
import org.w3c.dom.DOMException;
2323

2424
/**

src/main/java/org/htmlunit/css/dom/CSSImportRuleImpl.java renamed to src/main/java/org/htmlunit/cssparser/dom/CSSImportRuleImpl.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
* See the License for the specific language governing permissions and
1313
* limitations under the License.
1414
*/
15-
package org.htmlunit.css.dom;
15+
package org.htmlunit.cssparser.dom;
1616

1717
import java.io.IOException;
1818

19-
import org.htmlunit.css.parser.CSSException;
20-
import org.htmlunit.css.parser.CSSOMParser;
21-
import org.htmlunit.css.util.LangUtils;
19+
import org.htmlunit.cssparser.parser.CSSException;
20+
import org.htmlunit.cssparser.parser.CSSOMParser;
21+
import org.htmlunit.cssparser.util.LangUtils;
2222
import org.w3c.dom.DOMException;
2323

2424
/**

src/main/java/org/htmlunit/css/dom/CSSMediaRuleImpl.java renamed to src/main/java/org/htmlunit/cssparser/dom/CSSMediaRuleImpl.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@
1212
* See the License for the specific language governing permissions and
1313
* limitations under the License.
1414
*/
15-
package org.htmlunit.css.dom;
15+
package org.htmlunit.cssparser.dom;
1616

1717
import java.io.IOException;
1818
import java.io.ObjectInputStream;
1919
import java.io.ObjectOutputStream;
2020

21-
import org.htmlunit.css.parser.CSSException;
22-
import org.htmlunit.css.parser.CSSOMParser;
23-
import org.htmlunit.css.util.LangUtils;
24-
import org.htmlunit.css.util.ThrowCssExceptionErrorHandler;
21+
import org.htmlunit.cssparser.parser.CSSException;
22+
import org.htmlunit.cssparser.parser.CSSOMParser;
23+
import org.htmlunit.cssparser.util.LangUtils;
24+
import org.htmlunit.cssparser.util.ThrowCssExceptionErrorHandler;
2525
import org.w3c.dom.DOMException;
2626

2727
/**

src/main/java/org/htmlunit/css/dom/CSSPageRuleImpl.java renamed to src/main/java/org/htmlunit/cssparser/dom/CSSPageRuleImpl.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212
* See the License for the specific language governing permissions and
1313
* limitations under the License.
1414
*/
15-
package org.htmlunit.css.dom;
15+
package org.htmlunit.cssparser.dom;
1616

1717
import java.io.IOException;
1818

19-
import org.htmlunit.css.parser.CSSException;
20-
import org.htmlunit.css.parser.CSSOMParser;
21-
import org.htmlunit.css.util.LangUtils;
22-
import org.htmlunit.css.util.ThrowCssExceptionErrorHandler;
19+
import org.htmlunit.cssparser.parser.CSSException;
20+
import org.htmlunit.cssparser.parser.CSSOMParser;
21+
import org.htmlunit.cssparser.util.LangUtils;
22+
import org.htmlunit.cssparser.util.ThrowCssExceptionErrorHandler;
2323
import org.w3c.dom.DOMException;
2424

2525
/**

src/main/java/org/htmlunit/css/dom/CSSRuleListImpl.java renamed to src/main/java/org/htmlunit/cssparser/dom/CSSRuleListImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
* See the License for the specific language governing permissions and
1313
* limitations under the License.
1414
*/
15-
package org.htmlunit.css.dom;
15+
package org.htmlunit.cssparser.dom;
1616

1717
import java.io.Serializable;
1818
import java.util.ArrayList;
1919
import java.util.List;
2020

21-
import org.htmlunit.css.util.LangUtils;
21+
import org.htmlunit.cssparser.util.LangUtils;
2222

2323
/**
2424
* Implementation of CSSRuleList.

src/main/java/org/htmlunit/css/dom/CSSStyleDeclarationImpl.java renamed to src/main/java/org/htmlunit/cssparser/dom/CSSStyleDeclarationImpl.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@
1212
* See the License for the specific language governing permissions and
1313
* limitations under the License.
1414
*/
15-
package org.htmlunit.css.dom;
15+
package org.htmlunit.cssparser.dom;
1616

1717
import java.io.Serializable;
1818
import java.util.ArrayList;
1919
import java.util.List;
2020

21-
import org.htmlunit.css.parser.CSSErrorHandler;
22-
import org.htmlunit.css.parser.CSSOMParser;
23-
import org.htmlunit.css.util.LangUtils;
24-
import org.htmlunit.css.util.ThrowCssExceptionErrorHandler;
21+
import org.htmlunit.cssparser.parser.CSSErrorHandler;
22+
import org.htmlunit.cssparser.parser.CSSOMParser;
23+
import org.htmlunit.cssparser.util.LangUtils;
24+
import org.htmlunit.cssparser.util.ThrowCssExceptionErrorHandler;
2525
import org.w3c.dom.DOMException;
2626

2727
/**

0 commit comments

Comments
 (0)