Skip to content

Commit

Permalink
com.methodscript
Browse files Browse the repository at this point in the history
  • Loading branch information
LadyCailin committed Sep 10, 2018
1 parent 2102022 commit dea19a7
Show file tree
Hide file tree
Showing 307 changed files with 671 additions and 13,057 deletions.
4 changes: 2 additions & 2 deletions dependency-reduced-pom.xml
Expand Up @@ -420,7 +420,7 @@
</execution>
</executions>
<configuration>
<mainClass>com.laytonsmith.PureUtilities.ClassLoading.Annotations.CacheAnnotations</mainClass>
<mainClass>com.methodscript.PureUtilities.ClassLoading.Annotations.CacheAnnotations</mainClass>
<arguments>
<argument>${basedir}/target/classes</argument>
<argument>${basedir}/target/classes</argument>
Expand All @@ -443,7 +443,7 @@
<configuration>
<outputDirectory>src/main/generated</outputDirectory>
<processors>
<processor>com.laytonsmith.PureUtilities.Common.Annotations.CheckOverrides</processor>
<processor>com.methodscript.PureUtilities.Common.Annotations.CheckOverrides</processor>
<processor>com.laytonsmith.core.extensions.ExtensionAnnotationProcessor</processor>
<processor>com.laytonsmith.core.MObjectAnnotationProcessor</processor>
</processors>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -170,7 +170,7 @@

<!-- Pure Utilities -->
<dependency>
<groupId>com.laytonsmith</groupId>
<groupId>com.methodscript</groupId>
<artifactId>pureutilities</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml.releaseBackup
Expand Up @@ -721,7 +721,7 @@
</execution>
</executions>
<configuration>
<mainClass>com.laytonsmith.PureUtilities.ClassLoading.Annotations.CacheAnnotations</mainClass>
<mainClass>com.methodscript.PureUtilities.ClassLoading.Annotations.CacheAnnotations</mainClass>
<arguments>
<argument>${basedir}/target/classes</argument>
<argument>${basedir}/target/classes</argument>
Expand All @@ -744,7 +744,7 @@
<configuration>
<outputDirectory>src/main/generated</outputDirectory>
<processors>
<processor>com.laytonsmith.PureUtilities.Common.Annotations.CheckOverrides</processor>
<processor>com.methodscript.PureUtilities.Common.Annotations.CheckOverrides</processor>
<processor>com.laytonsmith.core.extensions.ExtensionAnnotationProcessor</processor>
<processor>com.laytonsmith.core.MObjectAnnotationProcessor</processor>
</processors>
Expand Down
10 changes: 5 additions & 5 deletions src/main/java/com/laytonsmith/Utilities/CacheAnnotations.java
@@ -1,9 +1,9 @@
package com.laytonsmith.Utilities;

import com.laytonsmith.PureUtilities.ClassLoading.ClassDiscovery;
import com.laytonsmith.PureUtilities.Common.Annotations.AnnotationChecks;
import com.laytonsmith.PureUtilities.Common.StreamUtils;
import com.laytonsmith.PureUtilities.Common.StringUtils;
import com.methodscript.PureUtilities.ClassLoading.ClassDiscovery;
import com.methodscript.PureUtilities.Common.Annotations.AnnotationChecks;
import com.methodscript.PureUtilities.Common.StreamUtils;
import com.methodscript.PureUtilities.Common.StringUtils;
import com.laytonsmith.abstraction.Implementation;
import com.laytonsmith.annotations.api;
import com.laytonsmith.annotations.typeof;
Expand All @@ -15,7 +15,7 @@
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import com.laytonsmith.PureUtilities.Common.Annotations.InterfaceRunnerFor;
import com.methodscript.PureUtilities.Common.Annotations.InterfaceRunnerFor;
import com.laytonsmith.core.natives.interfaces.MixedInterfaceRunner;

/**
Expand Down
8 changes: 4 additions & 4 deletions src/main/java/com/laytonsmith/Utilities/CheckOverrides.java
Expand Up @@ -5,10 +5,10 @@
*/
package com.laytonsmith.Utilities;

import com.laytonsmith.PureUtilities.ClassLoading.ClassDiscovery;
import com.laytonsmith.PureUtilities.ClassLoading.ClassMirror.ClassMirror;
import com.laytonsmith.PureUtilities.Common.ReflectionUtils;
import com.laytonsmith.PureUtilities.Common.StringUtils;
import com.methodscript.PureUtilities.ClassLoading.ClassDiscovery;
import com.methodscript.PureUtilities.ClassLoading.ClassMirror.ClassMirror;
import com.methodscript.PureUtilities.Common.ReflectionUtils;
import com.methodscript.PureUtilities.Common.StringUtils;
import com.laytonsmith.annotations.typeof;
import com.laytonsmith.core.constructs.CClassType;
import java.util.HashSet;
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/laytonsmith/Utilities/MSP/Connection.java
Expand Up @@ -15,7 +15,7 @@ public interface Connection {
* connection, if isAttemptSecure returned true, and the connection is actually insecure, it MUST fail, prior to
* transmission of any data.
*
* @throws com.laytonsmith.PureUtilities.MSP.Connection.ConnectionException
* @throws com.methodscript.PureUtilities.MSP.Connection.ConnectionException
*/
public void connect() throws ConnectionException;

Expand All @@ -24,7 +24,7 @@ public interface Connection {
* succeed even if the connection is insecure, and isAttemptSecure returned true. This should normally not be called
* without a user's intervention however.
*
* @throws com.laytonsmith.PureUtilities.MSP.Connection.ConnectionException
* @throws com.methodscript.PureUtilities.MSP.Connection.ConnectionException
*/
public void forceConnection() throws ConnectionException;

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/laytonsmith/Utilities/SSHWrapper.java
Expand Up @@ -8,8 +8,8 @@
import com.jcraft.jsch.Session;
import com.jcraft.jsch.SftpException;
import com.jcraft.jsch.UserInfo;
import com.laytonsmith.PureUtilities.Common.StreamUtils;
import com.laytonsmith.PureUtilities.Common.StringUtils;
import com.methodscript.PureUtilities.Common.StreamUtils;
import com.methodscript.PureUtilities.Common.StringUtils;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/laytonsmith/Utilities/UI/TextDialog.java
@@ -1,7 +1,7 @@
package com.laytonsmith.Utilities.UI;

import com.laytonsmith.PureUtilities.Common.ReflectionUtils;
import com.laytonsmith.PureUtilities.Common.UIUtils;
import com.methodscript.PureUtilities.Common.ReflectionUtils;
import com.methodscript.PureUtilities.Common.UIUtils;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.IOException;
Expand Down
@@ -1,9 +1,8 @@
package com.laytonsmith.Utilities.VirtualFS;

import com.laytonsmith.PureUtilities.ClassLoading.ClassDiscovery;
import com.laytonsmith.PureUtilities.ClassLoading.ClassMirror.ClassMirror;
import com.laytonsmith.PureUtilities.Common.StreamUtils;
import com.laytonsmith.PureUtilities.Common.TimeConversionUtil;
import com.methodscript.PureUtilities.ClassLoading.ClassDiscovery;
import com.methodscript.PureUtilities.ClassLoading.ClassMirror.ClassMirror;
import com.methodscript.PureUtilities.Common.StreamUtils;
import com.laytonsmith.Utilities.VirtualFS.VirtualFileSystemSettings.VirtualFileSystemSetting;
import java.io.File;
import java.io.IOException;
Expand All @@ -17,6 +16,7 @@
import java.util.Map;
import java.util.Set;
import java.util.UUID;
import java.util.concurrent.TimeUnit;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.apache.commons.io.FileUtils;
Expand Down Expand Up @@ -120,7 +120,8 @@ public void run() {
try {
fsSize = FileUtils.sizeOfDirectoryAsBigInteger(root);
//Sleep for a minute before running again.
Thread.sleep(TimeConversionUtil.inMilliseconds(1, TimeConversionUtil.TimeUnit.MINUTE));

Thread.sleep(TimeUnit.MILLISECONDS.convert(1, TimeUnit.MINUTES));
} catch (InterruptedException ex) {
Logger.getLogger(VirtualFileSystem.class.getName()).log(Level.SEVERE, null, ex);
}
Expand Down
@@ -1,8 +1,8 @@
package com.laytonsmith.Utilities.VirtualFS;

import com.laytonsmith.PureUtilities.Common.FileUtil;
import com.laytonsmith.PureUtilities.Common.StreamUtils;
import com.laytonsmith.PureUtilities.Common.StringUtils;
import com.methodscript.PureUtilities.Common.FileUtil;
import com.methodscript.PureUtilities.Common.StreamUtils;
import com.methodscript.PureUtilities.Common.StringUtils;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
Expand Down
@@ -1,6 +1,6 @@
package com.laytonsmith.abstraction;

import com.laytonsmith.PureUtilities.DaemonManager;
import com.methodscript.PureUtilities.DaemonManager;
import com.laytonsmith.core.events.BindableEvent;
import com.laytonsmith.core.events.Driver;
import com.laytonsmith.core.events.EventUtils;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/laytonsmith/abstraction/Convertor.java
@@ -1,6 +1,6 @@
package com.laytonsmith.abstraction;

import com.laytonsmith.PureUtilities.DaemonManager;
import com.methodscript.PureUtilities.DaemonManager;
import com.laytonsmith.abstraction.blocks.MCMaterial;
import com.laytonsmith.abstraction.enums.MCDyeColor;
import com.laytonsmith.abstraction.enums.MCPatternShape;
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/laytonsmith/abstraction/Implementation.java
@@ -1,7 +1,7 @@
package com.laytonsmith.abstraction;

import com.laytonsmith.PureUtilities.ClassLoading.ClassDiscovery;
import com.laytonsmith.PureUtilities.Common.ReflectionUtils;
import com.methodscript.PureUtilities.ClassLoading.ClassDiscovery;
import com.methodscript.PureUtilities.Common.ReflectionUtils;
import com.laytonsmith.abstraction.enums.EnumConvertor;
import com.laytonsmith.annotations.abstractionenum;
import com.laytonsmith.core.Prefs;
Expand Down
@@ -1,6 +1,6 @@
package com.laytonsmith.abstraction;

import com.laytonsmith.PureUtilities.Vector3D;
import com.methodscript.PureUtilities.Vector3D;
import com.laytonsmith.abstraction.enums.MCBodyPart;

import java.util.Map;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/laytonsmith/abstraction/MCEntity.java
@@ -1,6 +1,6 @@
package com.laytonsmith.abstraction;

import com.laytonsmith.PureUtilities.Vector3D;
import com.methodscript.PureUtilities.Vector3D;
import com.laytonsmith.abstraction.enums.MCEntityEffect;
import com.laytonsmith.abstraction.enums.MCEntityType;
import com.laytonsmith.abstraction.enums.MCTeleportCause;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/laytonsmith/abstraction/MCFireball.java
@@ -1,6 +1,6 @@
package com.laytonsmith.abstraction;

import com.laytonsmith.PureUtilities.Vector3D;
import com.methodscript.PureUtilities.Vector3D;

public interface MCFireball extends MCProjectile {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/laytonsmith/abstraction/MCLocation.java
@@ -1,6 +1,6 @@
package com.laytonsmith.abstraction;

import com.laytonsmith.PureUtilities.Vector3D;
import com.methodscript.PureUtilities.Vector3D;
import com.laytonsmith.abstraction.blocks.MCBlock;

public interface MCLocation extends AbstractionObject {
Expand Down
@@ -1,6 +1,6 @@
package com.laytonsmith.abstraction;

import com.laytonsmith.PureUtilities.Vector3D;
import com.methodscript.PureUtilities.Vector3D;
import com.laytonsmith.abstraction.enums.MCProjectileType;

public interface MCProjectileSource extends AbstractionObject {
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/com/laytonsmith/abstraction/StaticLayer.java
@@ -1,8 +1,8 @@
package com.laytonsmith.abstraction;

import com.laytonsmith.PureUtilities.ClassLoading.ClassDiscovery;
import com.laytonsmith.PureUtilities.Common.StreamUtils;
import com.laytonsmith.PureUtilities.DaemonManager;
import com.methodscript.PureUtilities.ClassLoading.ClassDiscovery;
import com.methodscript.PureUtilities.Common.StreamUtils;
import com.methodscript.PureUtilities.DaemonManager;
import com.laytonsmith.abstraction.blocks.MCMaterial;
import com.laytonsmith.abstraction.enums.MCPotionType;
import com.laytonsmith.abstraction.enums.MCRecipeType;
Expand Down
@@ -1,7 +1,7 @@
package com.laytonsmith.abstraction.bukkit;

import com.laytonsmith.PureUtilities.Common.ReflectionUtils;
import com.laytonsmith.PureUtilities.DaemonManager;
import com.methodscript.PureUtilities.Common.ReflectionUtils;
import com.methodscript.PureUtilities.DaemonManager;
import com.laytonsmith.abstraction.AbstractConvertor;
import com.laytonsmith.abstraction.ConvertorHelper;
import com.laytonsmith.abstraction.Implementation;
Expand Down
@@ -1,7 +1,7 @@
package com.laytonsmith.abstraction.bukkit;

import com.laytonsmith.PureUtilities.Common.ReflectionUtils;
import com.laytonsmith.PureUtilities.Common.StringUtils;
import com.methodscript.PureUtilities.Common.ReflectionUtils;
import com.methodscript.PureUtilities.Common.StringUtils;
import com.laytonsmith.abstraction.MCCommand;
import com.laytonsmith.abstraction.MCCommandMap;
import com.laytonsmith.abstraction.MCCommandSender;
Expand Down
@@ -1,6 +1,6 @@
package com.laytonsmith.abstraction.bukkit;

import com.laytonsmith.PureUtilities.Common.ReflectionUtils;
import com.methodscript.PureUtilities.Common.ReflectionUtils;
import com.laytonsmith.abstraction.MCCommand;
import com.laytonsmith.abstraction.MCCommandMap;
import java.util.ArrayList;
Expand Down
@@ -1,6 +1,6 @@
package com.laytonsmith.abstraction.bukkit;

import com.laytonsmith.PureUtilities.Vector3D;
import com.methodscript.PureUtilities.Vector3D;
import com.laytonsmith.abstraction.AbstractionObject;
import com.laytonsmith.abstraction.MCChunk;
import com.laytonsmith.abstraction.MCLocation;
Expand Down
@@ -1,6 +1,6 @@
package com.laytonsmith.abstraction.bukkit;

import com.laytonsmith.PureUtilities.Common.ReflectionUtils;
import com.methodscript.PureUtilities.Common.ReflectionUtils;
import com.laytonsmith.abstraction.MCObjective;
import com.laytonsmith.abstraction.MCScore;
import com.laytonsmith.abstraction.MCScoreboard;
Expand Down
@@ -1,6 +1,6 @@
package com.laytonsmith.abstraction.bukkit;

import com.laytonsmith.PureUtilities.Common.ReflectionUtils;
import com.methodscript.PureUtilities.Common.ReflectionUtils;
import com.laytonsmith.abstraction.MCBossBar;
import com.laytonsmith.abstraction.MCCommandMap;
import com.laytonsmith.abstraction.MCCommandSender;
Expand Down
@@ -1,6 +1,6 @@
package com.laytonsmith.abstraction.bukkit;

import com.laytonsmith.PureUtilities.Common.ReflectionUtils;
import com.methodscript.PureUtilities.Common.ReflectionUtils;
import com.laytonsmith.abstraction.MCScoreboard;
import com.laytonsmith.abstraction.MCTeam;
import com.laytonsmith.abstraction.enums.MCNameTagVisibility;
Expand Down
Expand Up @@ -2,7 +2,7 @@

import com.laytonsmith.abstraction.MCEntity;
import com.laytonsmith.abstraction.MCProjectile;
import com.laytonsmith.PureUtilities.Vector3D;
import com.methodscript.PureUtilities.Vector3D;
import com.laytonsmith.abstraction.blocks.MCBlock;
import com.laytonsmith.abstraction.blocks.MCBlockProjectileSource;
import com.laytonsmith.abstraction.bukkit.BukkitConvertor;
Expand Down
@@ -1,6 +1,6 @@
package com.laytonsmith.abstraction.bukkit.entities;

import com.laytonsmith.PureUtilities.Vector3D;
import com.methodscript.PureUtilities.Vector3D;
import com.laytonsmith.abstraction.MCArmorStand;
import com.laytonsmith.abstraction.MCEntityEquipment;
import com.laytonsmith.abstraction.MCItemStack;
Expand Down
@@ -1,6 +1,6 @@
package com.laytonsmith.abstraction.bukkit.entities;

import com.laytonsmith.PureUtilities.Vector3D;
import com.methodscript.PureUtilities.Vector3D;
import com.laytonsmith.abstraction.MCEntity;
import com.laytonsmith.abstraction.MCLivingEntity;
import com.laytonsmith.abstraction.MCLocation;
Expand Down
@@ -1,6 +1,6 @@
package com.laytonsmith.abstraction.bukkit.entities;

import com.laytonsmith.PureUtilities.Vector3D;
import com.methodscript.PureUtilities.Vector3D;
import com.laytonsmith.abstraction.MCEntity;
import com.laytonsmith.abstraction.MCProjectile;
import com.laytonsmith.abstraction.MCProjectileSource;
Expand Down
@@ -1,6 +1,6 @@
package com.laytonsmith.abstraction.bukkit.entities;

import com.laytonsmith.PureUtilities.Vector3D;
import com.methodscript.PureUtilities.Vector3D;
import com.laytonsmith.abstraction.MCFireball;
import org.bukkit.entity.Entity;
import org.bukkit.entity.Fireball;
Expand Down
@@ -1,6 +1,6 @@
package com.laytonsmith.abstraction.bukkit.entities;

import com.laytonsmith.PureUtilities.Common.ReflectionUtils;
import com.methodscript.PureUtilities.Common.ReflectionUtils;
import com.laytonsmith.abstraction.MCEntity;
import com.laytonsmith.abstraction.MCEntityEquipment;
import com.laytonsmith.abstraction.MCLivingEntity;
Expand Down
@@ -1,6 +1,6 @@
package com.laytonsmith.abstraction.bukkit.entities;

import com.laytonsmith.PureUtilities.Common.ReflectionUtils;
import com.methodscript.PureUtilities.Common.ReflectionUtils;
import com.laytonsmith.abstraction.MCCommandSender;
import com.laytonsmith.abstraction.MCEntity;
import com.laytonsmith.abstraction.MCItemStack;
Expand Down
@@ -1,6 +1,6 @@
package com.laytonsmith.abstraction.bukkit.events;

import com.laytonsmith.PureUtilities.Vector3D;
import com.methodscript.PureUtilities.Vector3D;
import com.laytonsmith.abstraction.Implementation;
import com.laytonsmith.abstraction.MCEntity;
import com.laytonsmith.abstraction.MCItemStack;
Expand Down
@@ -1,6 +1,6 @@
package com.laytonsmith.abstraction.bukkit.events;

import com.laytonsmith.PureUtilities.Vector3D;
import com.methodscript.PureUtilities.Vector3D;
import com.laytonsmith.abstraction.Implementation;
import com.laytonsmith.abstraction.MCEntity;
import com.laytonsmith.abstraction.MCHanging;
Expand Down
@@ -1,6 +1,6 @@
package com.laytonsmith.abstraction.enums;

import com.laytonsmith.PureUtilities.ClassLoading.DynamicEnum;
import com.methodscript.PureUtilities.ClassLoading.DynamicEnum;
import com.laytonsmith.annotations.MDynamicEnum;
import com.laytonsmith.annotations.MEnum;
import com.laytonsmith.core.Static;
Expand Down
@@ -1,6 +1,6 @@
package com.laytonsmith.abstraction.enums;

import com.laytonsmith.PureUtilities.ClassLoading.DynamicEnum;
import com.methodscript.PureUtilities.ClassLoading.DynamicEnum;
import com.laytonsmith.abstraction.MCEntity;
import com.laytonsmith.annotations.MDynamicEnum;
import com.laytonsmith.annotations.MEnum;
Expand Down
@@ -1,6 +1,6 @@
package com.laytonsmith.abstraction.enums;

import com.laytonsmith.PureUtilities.ClassLoading.DynamicEnum;
import com.methodscript.PureUtilities.ClassLoading.DynamicEnum;
import com.laytonsmith.annotations.MDynamicEnum;
import com.laytonsmith.annotations.MEnum;
import com.laytonsmith.core.Static;
Expand Down

0 comments on commit dea19a7

Please sign in to comment.