Moved store to warpsea.xml

This commit is contained in:
Willem Cazander 2022-02-21 18:46:02 +01:00
parent 665dee9d0f
commit 33eee1255b
12 changed files with 120 additions and 87 deletions

View file

@ -1,11 +0,0 @@
package love.distributedrebirth.warpme.chain;
import java.util.List;
import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ;
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
public class WaterTag {
private List<WaterTagChain> tagChains;
}

View file

@ -0,0 +1,17 @@
package love.distributedrebirth.warpme.sea;
import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ;
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
public class WaterOcean {
private WaterSea sea;
public WaterSea theSea() {
return sea;
}
public void setSea(WaterSea sea) {
this.sea = sea;
}
}

View file

@ -0,0 +1,49 @@
package love.distributedrebirth.warpme.sea;
import java.util.List;
import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ;
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
public class WaterSea {
private String name;
private List<WaterSeaChain> seaChains;
private List<WaterSeaMagic> seaMagics;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public List<WaterSeaChain> getSeaChains() {
return seaChains;
}
public void setSeaChains(List<WaterSeaChain> seaChains) {
for (WaterSeaChain seaChain:seaChains) {
addSeaChain(seaChain);
}
}
public void addSeaChain(WaterSeaChain seaChain) {
seaChains.add(seaChain);
}
public List<WaterSeaMagic> getSeaMagics() {
return seaMagics;
}
public void setSeaMagics(List<WaterSeaMagic> seaMagics) {
for (WaterSeaMagic seaMagic: seaMagics) {
addSeaMagic(seaMagic);
}
}
public void addSeaMagic(WaterSeaMagic seaMagic) {
seaMagics.add(seaMagic);
}
}

View file

@ -1,15 +1,15 @@
package love.distributedrebirth.warpme.chain; package love.distributedrebirth.warpme.sea;
import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ; import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ;
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天") @BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
public class WaterTagChain { public class WaterSeaChain {
private String path; private String path;
private String key; private String key;
private String tag; private String tag;
public WaterTagChain() { public WaterSeaChain() {
} }
public String getPath() { public String getPath() {

View file

@ -0,0 +1,34 @@
package love.distributedrebirth.warpme.sea;
import java.util.List;
import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ;
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
public class WaterSeaMagic {
private String magicMime;
private List<WaterSeaMagicResource> resources;
public String getMagicMime() {
return magicMime;
}
public void setMagicMime(String magicMime) {
this.magicMime = magicMime;
}
public List<WaterSeaMagicResource> getResources() {
return resources;
}
public void setResources(List<WaterSeaMagicResource> resources) {
for (WaterSeaMagicResource resource: resources) {
addResource(resource);
}
}
public void addResource(WaterSeaMagicResource resource) {
resources.add(resource);
}
}

View file

@ -0,0 +1,17 @@
package love.distributedrebirth.warpme.sea;
import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ;
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
public class WaterSeaMagicResource {
private String file;
public String getFile() {
return file;
}
public void setFile(String file) {
this.file = file;
}
}

View file

@ -1,14 +0,0 @@
package love.distributedrebirth.warpme.store;
import java.util.List;
import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ;
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
public class WaterPathApplication {
private String name;
private String description;
private String resources;
private List<WaterPathDependency> dependencies;
}

View file

@ -1,10 +0,0 @@
package love.distributedrebirth.warpme.store;
import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ;
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
public class WaterPathDependency {
private String name;
private String version;
}

View file

@ -1,14 +0,0 @@
package love.distributedrebirth.warpme.store;
import java.util.List;
import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ;
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
public class WaterPathLibrary {
private String name;
private String resources;
private List<WaterPathLibraryFile> files;
private List<WaterPathDependency> dependencies;
}

View file

@ -1,10 +0,0 @@
package love.distributedrebirth.warpme.store;
import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ;
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
public class WaterPathLibraryFile {
private String name;
private String type;
}

View file

@ -1,14 +0,0 @@
package love.distributedrebirth.warpme.store;
import java.util.List;
import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ;
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
public class WaterPathMedia {
private String name;
private String description;
private String resources;
private List<WaterPathDependency> dependencies;
}

View file

@ -1,11 +0,0 @@
package love.distributedrebirth.warpme.store;
import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ;
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
public class WaterStore {
private WaterPathApplication application;
private WaterPathLibrary library;
private WaterPathMedia media;
}