feat: Moved package name from cn.org.codecrafters to com.onixbyte

This commit is contained in:
Zihlu Wang
2024-04-26 01:50:46 +08:00
parent 65287d0b24
commit 8dd0dad8d9
66 changed files with 180 additions and 188 deletions
@@ -15,9 +15,9 @@
* limitations under the License.
*/
package cn.org.codecrafters.webcal;
package com.onixbyte.webcal;
import cn.org.codecrafters.webcal.impl.WebCalendarEvent;
import com.onixbyte.webcal.impl.WebCalendarEvent;
import java.util.ArrayList;
import java.util.List;
@@ -15,10 +15,9 @@
* limitations under the License.
*/
package cn.org.codecrafters.webcal;
package com.onixbyte.webcal;
import cn.org.codecrafters.webcal.config.Classification;
import cn.org.codecrafters.webcal.impl.WebCalendarEvent;
import com.onixbyte.webcal.config.Classification;
import java.time.Duration;
import java.time.LocalDateTime;
@@ -15,7 +15,7 @@
* limitations under the License.
*/
package cn.org.codecrafters.webcal.config;
package com.onixbyte.webcal.config;
import lombok.Getter;
@@ -15,7 +15,7 @@
* limitations under the License.
*/
package cn.org.codecrafters.webcal.config;
package com.onixbyte.webcal.config;
import java.time.ZoneOffset;
import java.time.format.DateTimeFormatter;
@@ -23,11 +23,11 @@
* <p>The classes in this package include:</p>
* <ul>
* <li>
* {@link cn.org.codecrafters.webcal.config.Classification}: An enum
* {@link com.onixbyte.webcal.config.Classification}: An enum
* representing the classification of events in the web calendar.
* </li>
* </ul>
*
* @since 1.0.0
*/
package cn.org.codecrafters.webcal.config;
package com.onixbyte.webcal.config;
@@ -15,11 +15,11 @@
* limitations under the License.
*/
package cn.org.codecrafters.webcal.impl;
package com.onixbyte.webcal.impl;
import cn.org.codecrafters.webcal.WebCalendarNode;
import cn.org.codecrafters.webcal.config.Classification;
import cn.org.codecrafters.webcal.config.DateAndTimeFormatter;
import com.onixbyte.webcal.WebCalendarNode;
import com.onixbyte.webcal.config.Classification;
import com.onixbyte.webcal.config.DateAndTimeFormatter;
import java.text.MessageFormat;
import java.time.Duration;
@@ -23,16 +23,16 @@
* The main classes and modules in this package include:
* <ul>
* <li>
* {@link cn.org.codecrafters.webcal.WebCalendar}: A class for
* {@link com.onixbyte.webcal.WebCalendar}: A class for
* generating web calendars with customisable settings and events.
* </li>
* <li>
* {@link cn.org.codecrafters.webcal.impl.WebCalendarEvent}: A class
* {@link com.onixbyte.webcal.impl.WebCalendarEvent}: A class
* representing a single event in a web calendar with various
* attributes and options.
* </li>
* <li>
* {@link cn.org.codecrafters.webcal.WebCalendarNode}: An abstract
* {@link com.onixbyte.webcal.WebCalendarNode}: An abstract
* class serving as the base class for web calendar nodes, providing
* common attributes and functionality for events.
* </li>
@@ -40,4 +40,4 @@
*
* @since 1.0.0
*/
package cn.org.codecrafters.webcal;
package com.onixbyte.webcal;
@@ -15,11 +15,11 @@
* limitations under the License.
*/
package cn.org.codecrafters.webcal.test;
package com.onixbyte.webcal.test;
import cn.org.codecrafters.webcal.WebCalendar;
import cn.org.codecrafters.webcal.impl.WebCalendarEvent;
import cn.org.codecrafters.webcal.config.Classification;
import com.onixbyte.webcal.WebCalendar;
import com.onixbyte.webcal.impl.WebCalendarEvent;
import com.onixbyte.webcal.config.Classification;
import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.Test;