Package me.lucko.jarrelocator
Class Relocation
- java.lang.Object
-
- me.lucko.jarrelocator.Relocation
-
public final class Relocation extends Object
A relocation rule
-
-
Constructor Summary
Constructors Constructor Description Relocation(String pattern, String relocatedPattern)Creates a new relocation with no specific includes or excludesRelocation(String pattern, String relocatedPattern, Collection<String> includes, Collection<String> excludes)Creates a new relocation
-
-
-
Constructor Detail
-
Relocation
public Relocation(String pattern, String relocatedPattern, Collection<String> includes, Collection<String> excludes)
Creates a new relocation- Parameters:
pattern- the pattern to matchrelocatedPattern- the pattern to relocate toincludes- a collection of patterns which this rule should specifically includeexcludes- a collection of patterns which this rule should specifically exclude
-
-