Skip to content

Commit 5d998f0

Browse files
committed
rename package to org.htmlunit.css
1 parent 579d341 commit 5d998f0

File tree

121 files changed

+476
-534
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

+476
-534
lines changed

src/main/java/com/gargoylesoftware/css/parser/condition/package-info.java

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

src/main/java/com/gargoylesoftware/css/parser/selector/package-info.java

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

src/main/java/com/gargoylesoftware/css/dom/AbstractCSSRuleImpl.java renamed to src/main/java/org/htmlunit/css/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 com.gargoylesoftware.css.dom;
15+
package org.htmlunit.css.dom;
1616

1717
import java.io.Serializable;
1818

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

2121
/**
2222
* @author Ronald Brill

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

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,15 @@
1212
* See the License for the specific language governing permissions and
1313
* limitations under the License.
1414
*/
15-
package com.gargoylesoftware.css.dom;
15+
package org.htmlunit.css.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;
1922
import org.w3c.dom.DOMException;
2023

21-
import com.gargoylesoftware.css.parser.CSSException;
22-
import com.gargoylesoftware.css.parser.CSSOMParser;
23-
import com.gargoylesoftware.css.util.LangUtils;
24-
2524
/**
2625
* Implementation of CSSCharsetRule.
2726
*

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

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,15 @@
1212
* See the License for the specific language governing permissions and
1313
* limitations under the License.
1414
*/
15-
package com.gargoylesoftware.css.dom;
15+
package org.htmlunit.css.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;
1922
import org.w3c.dom.DOMException;
2023

21-
import com.gargoylesoftware.css.parser.CSSException;
22-
import com.gargoylesoftware.css.parser.CSSOMParser;
23-
import com.gargoylesoftware.css.util.LangUtils;
24-
2524
/**
2625
* Implementation of CSSFontFaceRule.
2726
*

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

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,15 @@
1212
* See the License for the specific language governing permissions and
1313
* limitations under the License.
1414
*/
15-
package com.gargoylesoftware.css.dom;
15+
package org.htmlunit.css.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;
1922
import org.w3c.dom.DOMException;
2023

21-
import com.gargoylesoftware.css.parser.CSSException;
22-
import com.gargoylesoftware.css.parser.CSSOMParser;
23-
import com.gargoylesoftware.css.util.LangUtils;
24-
2524
/**
2625
* Implementation of CSSImportRule.
2726
*

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

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,18 @@
1212
* See the License for the specific language governing permissions and
1313
* limitations under the License.
1414
*/
15-
package com.gargoylesoftware.css.dom;
15+
package org.htmlunit.css.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;
2125
import org.w3c.dom.DOMException;
2226

23-
import com.gargoylesoftware.css.parser.CSSException;
24-
import com.gargoylesoftware.css.parser.CSSOMParser;
25-
import com.gargoylesoftware.css.util.LangUtils;
26-
import com.gargoylesoftware.css.util.ThrowCssExceptionErrorHandler;
27-
2827
/**
2928
* Implementation of CSSMediaRule.
3029
*

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

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,16 @@
1212
* See the License for the specific language governing permissions and
1313
* limitations under the License.
1414
*/
15-
package com.gargoylesoftware.css.dom;
15+
package org.htmlunit.css.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;
1923
import org.w3c.dom.DOMException;
2024

21-
import com.gargoylesoftware.css.parser.CSSException;
22-
import com.gargoylesoftware.css.parser.CSSOMParser;
23-
import com.gargoylesoftware.css.util.LangUtils;
24-
import com.gargoylesoftware.css.util.ThrowCssExceptionErrorHandler;
25-
2625
/**
2726
* Implementation of CSSPageRule.
2827
*

src/main/java/com/gargoylesoftware/css/dom/CSSRuleListImpl.java renamed to src/main/java/org/htmlunit/css/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 com.gargoylesoftware.css.dom;
15+
package org.htmlunit.css.dom;
1616

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

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

2323
/**
2424
* Implementation of CSSRuleList.

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

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,18 @@
1212
* See the License for the specific language governing permissions and
1313
* limitations under the License.
1414
*/
15-
package com.gargoylesoftware.css.dom;
15+
package org.htmlunit.css.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;
2125
import org.w3c.dom.DOMException;
2226

23-
import com.gargoylesoftware.css.parser.CSSErrorHandler;
24-
import com.gargoylesoftware.css.parser.CSSOMParser;
25-
import com.gargoylesoftware.css.util.LangUtils;
26-
import com.gargoylesoftware.css.util.ThrowCssExceptionErrorHandler;
27-
2827
/**
2928
* Implementation of CSSStyleDeclaration.
3029
*

0 commit comments

Comments
 (0)