put a mononoke spider princess per bean grave
This commit is contained in:
parent
84f3a34f21
commit
37ab7ae4be
|
@ -190,7 +190,9 @@ public class CalculatorDeskApp extends AbstractDeskApp implements DeskAppRendere
|
|||
result = v1*v2;
|
||||
break;
|
||||
case DIVIDE:
|
||||
if (v2 != 0) {
|
||||
result = v1/v2;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
|
|
@ -12,37 +12,63 @@ import love.distributedrebirth.bassboonyd.coffin.BãßBȍőnCoffin;
|
|||
import love.distributedrebirth.bassboonyd.coffin.BãßBȍőnCoffinNail;
|
||||
import love.distributedrebirth.bassboonyd.coffin.BãßBȍőnCoffinOpen;
|
||||
import love.distributedrebirth.bassboonyd.sinit.BãßBȍőnꝐŕḯṿª₮ḕ;
|
||||
import love.distributedrebirth.bassboonyd.spider.BãßBȍőnSpider;
|
||||
|
||||
@BãßBȍőnAuthor注(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
|
||||
public interface Bãß {
|
||||
|
||||
public static final class Ꝑŕḯṿª₮ḕ implements BãßBȍőnꝐŕḯṿª₮ḕ {
|
||||
private static final Map<Object, BãßBȍőnCoffin<?>> GRAVE_YARD = new WeakHashMap<>(); // TODO: test bean gc
|
||||
private static final Map<Object, BȍőnGrave> GRAVE_YARD = new WeakHashMap<>();
|
||||
private static final ReadWriteLock FUNERAL = new ReentrantReadWriteLock();
|
||||
|
||||
private Ꝑŕḯṿª₮ḕ() {
|
||||
}
|
||||
|
||||
@SafeVarargs
|
||||
public static final <T, K extends BãßBȍőnCoffinNail> void 仙ᴵᴺᴵᵀ(BãßBȍőnʸᴰ<T,K> boon, Consumer<BãßBȍőnCoffinOpen<K>>...coffinFillers) {
|
||||
BãßBȍőnPhaseLoader.CAST_BONE_MAGIC(boon, coffinFillers);
|
||||
public static final <T, K extends BãßBȍőnCoffinNail> void 魎ᴵᴺᴵᵀ(BãßBȍőnʸᴰ<T,K> boon, Consumer<BãßBȍőnCoffinOpen<K>>...coffinFillers) { // mononoke-init
|
||||
BãßBȍőnPhaseLoader.CAST_BONE_MAGIC(boon, 墳ᴼᶠ(boon).spider, coffinFillers);
|
||||
}
|
||||
|
||||
public static final <T, K extends BãßBȍőnCoffinNail> void 鎖ᴳᴿᴬⱽᴱ(BãßBȍőnʸᴰ<T,K> boon) {
|
||||
BãßBȍőnCoffin<K> coffin = (BãßBȍőnCoffin<K>)boon.toBBC();
|
||||
protected static final <T, K extends BãßBȍőnCoffinNail> BãßBȍőnCoffin<K> 殭屍ᴼᶠ(BãßBȍőnʸᴰ<T,K> boon) { // zombie-of
|
||||
return 墳ᴼᶠ(boon).石棺ᴹᵃᵍᶦᶜ(boon.getClass());
|
||||
}
|
||||
|
||||
public static final <T, K extends BãßBȍőnCoffinNail> void 鎖ᴳᴿᴬⱽᴱ(BãßBȍőnʸᴰ<T,K> boon) { // lock-grave
|
||||
BãßBȍőnCoffin<K> coffin = boon.toBBC();
|
||||
if (!(coffin instanceof BãßBȍőnCoffinOpen)) {
|
||||
return; // already closed
|
||||
}
|
||||
Lock graveDigger = FUNERAL.writeLock();
|
||||
Lock graveDigger = FUNERAL.readLock();
|
||||
graveDigger.lock();
|
||||
try {
|
||||
GRAVE_YARD.remove(boon.toBBCHeadStoneʸᴰ());
|
||||
GRAVE_YARD.put(boon.toBBCHeadStoneʸᴰ(), ((BãßBȍőnCoffinOpen<K>)coffin).LOCK_COFFIN());
|
||||
GRAVE_YARD.get(boon).棺ᴸᵒᶜᵏ();
|
||||
} finally {
|
||||
graveDigger.unlock();
|
||||
}
|
||||
}
|
||||
|
||||
private static final BȍőnGrave 墳ᴼᶠ(BãßBȍőnʸᴰ<?,?> boon) { // grave-of
|
||||
BȍőnGrave boonGrave = null;
|
||||
Lock bibleReader = FUNERAL.readLock(); // Can't force enum only, thus no jvm safety
|
||||
bibleReader.lock();
|
||||
try {
|
||||
boonGrave = GRAVE_YARD.get(boon);
|
||||
} finally {
|
||||
bibleReader.unlock();
|
||||
}
|
||||
if (boonGrave == null) {
|
||||
Lock shemiraWriter = FUNERAL.writeLock();
|
||||
shemiraWriter.lock();
|
||||
try {
|
||||
boonGrave = new BȍőnGrave();
|
||||
GRAVE_YARD.put(boon, boonGrave);
|
||||
} finally {
|
||||
shemiraWriter.unlock();
|
||||
}
|
||||
}
|
||||
return boonGrave;
|
||||
}
|
||||
|
||||
//TODO
|
||||
// public static <T> T 豆ᴺᴱᵂ(Class<T> seedling) {
|
||||
// try {
|
||||
|
@ -54,28 +80,24 @@ public interface Bãß {
|
|||
// throw new RuntimeException(e);
|
||||
// }
|
||||
// }
|
||||
}
|
||||
|
||||
public static final class BȍőnGrave {
|
||||
private final BãßBȍőnSpider spider;
|
||||
private BãßBȍőnCoffin<?> coffin;
|
||||
|
||||
private BȍőnGrave() {
|
||||
this.spider = new BãßBȍőnSpider();
|
||||
this.coffin = BãßBȍőnCoffinOpen.newInstance();
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
protected static final <T, K extends BãßBȍőnCoffinNail> BãßBȍőnCoffin<K> 殭屍ᴼᶠ(BãßBȍőnʸᴰ<T,K> boon) {
|
||||
BãßBȍőnCoffin<K> zombieCoffin = null;
|
||||
Lock bibleReader = Bãß.Ꝑŕḯṿª₮ḕ.FUNERAL.readLock(); // Can't force enum only, thus no jvm safety
|
||||
bibleReader.lock();
|
||||
try {
|
||||
zombieCoffin = (BãßBȍőnCoffin<K>) Bãß.Ꝑŕḯṿª₮ḕ.GRAVE_YARD.get(boon.toBBCHeadStoneʸᴰ());
|
||||
} finally {
|
||||
bibleReader.unlock();
|
||||
private <T, K extends BãßBȍőnCoffinNail> BãßBȍőnCoffin<K> 石棺ᴹᵃᵍᶦᶜ(Class<T> coffinType) { // sarcophagus-magic
|
||||
return (BãßBȍőnCoffin<K>) coffin;
|
||||
}
|
||||
if (zombieCoffin == null) {
|
||||
Lock shemiraWriter = Bãß.Ꝑŕḯṿª₮ḕ.FUNERAL.writeLock();
|
||||
shemiraWriter.lock();
|
||||
try {
|
||||
zombieCoffin = BãßBȍőnCoffinOpen.newInstance();
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.GRAVE_YARD.put(boon.toBBCHeadStoneʸᴰ(), zombieCoffin);
|
||||
} finally {
|
||||
shemiraWriter.unlock();
|
||||
}
|
||||
}
|
||||
return zombieCoffin;
|
||||
|
||||
private void 棺ᴸᵒᶜᵏ() { // coffin-lock
|
||||
coffin = BãßBȍőnCoffinOpen.FROM(coffin).LOCK_COFFIN();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -24,35 +24,32 @@ import love.distributedrebirth.bassboonyd.spider.BãßBȍőnSpiderWire注;
|
|||
@BãßBȍőnAuthor注(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
|
||||
public final class BãßBȍőnPhaseLoader {
|
||||
|
||||
private static final BãßBȍőnSpider BLACK_WIDOW = new BãßBȍőnSpider();
|
||||
private static final Set<Class<?>> SCANNED = new LinkedHashSet<>();
|
||||
|
||||
private BãßBȍőnPhaseLoader() {
|
||||
}
|
||||
|
||||
@SafeVarargs
|
||||
protected static <T, K extends BãßBȍőnCoffinNail> void CAST_BONE_MAGIC(BãßBȍőnʸᴰ<T,K> boon, Consumer<BãßBȍőnCoffinOpen<K>>...coffinFillers) {
|
||||
protected static <T, K extends BãßBȍőnCoffinNail> void CAST_BONE_MAGIC(BãßBȍőnʸᴰ<T,K> boon, BãßBȍőnSpider spider, Consumer<BãßBȍőnCoffinOpen<K>>...coffinFillers) {
|
||||
BãßBȍőnCoffinOpen<K> bbc = BãßBȍőnCoffinOpen.FROM(boon);
|
||||
try {
|
||||
for (Consumer<BãßBȍőnCoffinOpen<K>> embalmFactory:coffinFillers) {
|
||||
embalmFactory.accept(bbc);
|
||||
}
|
||||
initPrivate(boon);
|
||||
initSpiderEggs(boon);
|
||||
initSpiderWires(boon);
|
||||
initSpiderEggs(boon, spider);
|
||||
initSpiderWires(boon, spider);
|
||||
} catch (Exception e) {
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
}
|
||||
|
||||
private static void initSpiderWires(Object boon) throws IllegalAccessException, IllegalArgumentException, InvocationTargetException {
|
||||
private static void initSpiderWires(Object boon, BãßBȍőnSpider spider) throws IllegalAccessException, IllegalArgumentException, InvocationTargetException {
|
||||
//System.out.println("SCAN-BOON-FIELD: "+boon.getClass().getSimpleName());
|
||||
for (Field m:boon.getClass().getDeclaredFields()) {
|
||||
if (!m.isAnnotationPresent(BãßBȍőnSpiderWire注.class)) {
|
||||
continue;
|
||||
}
|
||||
BãßBȍőnSpiderWire注 anno = m.getAnnotation(BãßBȍőnSpiderWire注.class);
|
||||
BãßBȍőnSpiderSilk silkRoad = BLACK_WIDOW.silkRoad(m.getType());
|
||||
BãßBȍőnSpiderSilk silkRoad = spider.silkRoad(m.getType());
|
||||
Object bean = silkRoad.senseWire(boon, anno.name(), anno.description());
|
||||
//System.out.println("type: "+ m.getType() +" wth name: "+anno.name()+" of boon: "+boon.getClass());
|
||||
|
||||
|
@ -61,25 +58,21 @@ public final class BãßBȍőnPhaseLoader {
|
|||
}
|
||||
}
|
||||
|
||||
private static <T, K extends BãßBȍőnCoffinNail> void initSpiderEggs(BãßBȍőnʸᴰ<T,K> boon) throws IllegalAccessException, IllegalArgumentException, InvocationTargetException {
|
||||
private static <T, K extends BãßBȍőnCoffinNail> void initSpiderEggs(BãßBȍőnʸᴰ<T,K> boon, BãßBȍőnSpider spider) throws IllegalAccessException, IllegalArgumentException, InvocationTargetException {
|
||||
for (Class<?> interfaceClass:walkInterfaces(boon.getClass(), new LinkedHashSet<>())) {
|
||||
for (Class<?> declaredClass:((Class<?>) interfaceClass).getDeclaredClasses()) {
|
||||
initSpiderEggRegistrate(boon, declaredClass);
|
||||
initSpiderEggRegistrate(boon, spider, declaredClass);
|
||||
}
|
||||
}
|
||||
for (Class<?> declaredClass:boon.getClass().getDeclaredClasses()) {
|
||||
initSpiderEggRegistrate(boon, declaredClass);
|
||||
initSpiderEggRegistrate(boon, spider, declaredClass);
|
||||
}
|
||||
}
|
||||
|
||||
private static <T, K extends BãßBȍőnCoffinNail> void initSpiderEggRegistrate(BãßBȍőnʸᴰ<T,K> boon, Class<?> declaredClass) throws IllegalAccessException, IllegalArgumentException, InvocationTargetException {
|
||||
private static <T, K extends BãßBȍőnCoffinNail> void initSpiderEggRegistrate(BãßBȍőnʸᴰ<T,K> boon, BãßBȍőnSpider spider, Class<?> declaredClass) throws IllegalAccessException, IllegalArgumentException, InvocationTargetException {
|
||||
if (!BãßBȍőnꝐŕḯṿª₮ḕ.class.isAssignableFrom(declaredClass)) {
|
||||
return;
|
||||
}
|
||||
if (SCANNED.contains(declaredClass)) {
|
||||
return;
|
||||
}
|
||||
SCANNED.add(declaredClass);
|
||||
for (Method m:declaredClass.getDeclaredMethods()) {
|
||||
if (!m.isAnnotationPresent(BãßBȍőnSpiderEgg注.class)) {
|
||||
continue;
|
||||
|
@ -87,7 +80,7 @@ public final class BãßBȍőnPhaseLoader {
|
|||
//System.out.println("annoEgg: "+boon.getClass().getSimpleName()+"."+boon+" from: "+declaredClass.getName()+" m="+m.toGenericString());
|
||||
|
||||
m.setAccessible(true);
|
||||
BLACK_WIDOW.registrateEgg(m.getReturnType(), m);
|
||||
spider.registrateEgg(m.getReturnType(), m);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -7,11 +7,6 @@ import love.distributedrebirth.bassboonyd.coffin.BãßBȍőnCoffinNail;
|
|||
@BãßBȍőnAuthor注(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
|
||||
public interface BãßBȍőnʸᴰ<T, K extends BãßBȍőnCoffinNail> {
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
default T toBBCHeadStoneʸᴰ() {
|
||||
return (T) this;
|
||||
}
|
||||
|
||||
default BãßBȍőnCoffin<K> toBBC() {
|
||||
return Bãß.Ꝑŕḯṿª₮ḕ.殭屍ᴼᶠ(this);
|
||||
}
|
||||
|
|
|
@ -76,7 +76,7 @@ public enum Base2PartsFactory implements DefaultEnumInstanceᴶᴹˣ<Base2PartsF
|
|||
private static final int[] SUPPORTED_BASES = {2,3,4,5,6,7,8,9,10,11,12,16,20,60};
|
||||
|
||||
private Base2PartsFactory() {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.仙ᴵᴺᴵᵀ(this);
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.魎ᴵᴺᴵᵀ(this);
|
||||
}
|
||||
|
||||
public int[] BãßBases() {
|
||||
|
|
|
@ -69,7 +69,7 @@ public enum Base2Terminator implements DefaultEnumInstanceᴶᴹˣ<Base2Terminat
|
|||
private CounterGuageᴶᴹˣ writeV144ToctaTypeWrites;
|
||||
|
||||
private Base2Terminator() {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.仙ᴵᴺᴵᵀ(this);
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.魎ᴵᴺᴵᵀ(this);
|
||||
}
|
||||
|
||||
public int Bãß2ReadTong(InputStream input, List<V072Tong> output) throws IOException {
|
||||
|
|
|
@ -48,7 +48,7 @@ public enum Base2WarpCore implements DefaultEnumInstanceᴶᴹˣ<Base2WarpCore,B
|
|||
private CounterGuageᴶᴹˣ warpCoreWrites;
|
||||
|
||||
private Base2WarpCore() {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.仙ᴵᴺᴵᵀ(this);
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.魎ᴵᴺᴵᵀ(this);
|
||||
armedWarpWaterName.setValueString("default");
|
||||
armedWarpWaterDesc.setValueString("Current active cipher.");
|
||||
armedWarpCipherLock.setValueBoolean(false);
|
||||
|
|
|
@ -15,7 +15,7 @@ public enum T02PartBinary implements BãßBȍőnPartʸᴰ<T02PartBinary> {
|
|||
public final static T02PartBinary STATIC = T02PartBinary.PART_1;
|
||||
|
||||
private T02PartBinary(String dialTone, String chinaKey, String chinaValue) {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.仙ᴵᴺᴵᵀ(this, BBC -> {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.魎ᴵᴺᴵᵀ(this, BBC -> {
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.DIAL_TONE, dialTone);
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.CHINA_KEY, chinaKey);
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.CHINA_VALUE, chinaValue);
|
||||
|
|
|
@ -16,7 +16,7 @@ public enum T03PartTrit implements BãßBȍőnPartʸᴰ<T03PartTrit> {
|
|||
public final static T03PartTrit STATIC = T03PartTrit.PART_1;
|
||||
|
||||
private T03PartTrit(String dialTone, String chinaKey, String chinaValue) {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.仙ᴵᴺᴵᵀ(this, BBC -> {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.魎ᴵᴺᴵᵀ(this, BBC -> {
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.DIAL_TONE, dialTone);
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.CHINA_KEY, chinaKey);
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.CHINA_VALUE, chinaValue);
|
||||
|
|
|
@ -20,7 +20,7 @@ public enum T04PartQuad implements BãßBȍőnPartAlt3ʸᴰ<T04PartQuad> {
|
|||
public final static T04PartQuad STATIC = T04PartQuad.PART_1;
|
||||
|
||||
private T04PartQuad(String dialTone, String chinaKey, String chinaValue, String alt1Value, String alt2Value, String alt3Value) {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.仙ᴵᴺᴵᵀ(this, BBC -> {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.魎ᴵᴺᴵᵀ(this, BBC -> {
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.DIAL_TONE, dialTone);
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.CHINA_KEY, chinaKey);
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.CHINA_VALUE, chinaValue);
|
||||
|
|
|
@ -20,7 +20,7 @@ public enum T05PartPental implements BãßBȍőnPartAlt2ʸᴰ<T05PartPental> {
|
|||
public final static T05PartPental STATIC = T05PartPental.PART_1;
|
||||
|
||||
private T05PartPental(String dialTone, String chinaKey, String chinaValue, String alt1Value, String alt2Value) {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.仙ᴵᴺᴵᵀ(this, BBC -> {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.魎ᴵᴺᴵᵀ(this, BBC -> {
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.DIAL_TONE, dialTone);
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.CHINA_KEY, chinaKey);
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.CHINA_VALUE, chinaValue);
|
||||
|
|
|
@ -20,7 +20,7 @@ public enum T06PartSeximal implements BãßBȍőnPartAlt1ʸᴰ<T06PartSeximal> {
|
|||
public final static T06PartSeximal STATIC = T06PartSeximal.PART_1;
|
||||
|
||||
private T06PartSeximal(String dialTone, String chinaKey, String chinaValue, String alt1Value) {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.仙ᴵᴺᴵᵀ(this, BBC -> {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.魎ᴵᴺᴵᵀ(this, BBC -> {
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.DIAL_TONE, dialTone);
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.CHINA_KEY, chinaKey);
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.CHINA_VALUE, chinaValue);
|
||||
|
|
|
@ -21,7 +21,7 @@ public enum T07PartPlanIt implements BãßBȍőnPartAlt1ʸᴰ<T07PartPlanIt> {
|
|||
public final static T07PartPlanIt STATIC = T07PartPlanIt.PART_1;
|
||||
|
||||
private T07PartPlanIt(String dialTone, String chinaKey, String chinaValue, String alt1Value) {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.仙ᴵᴺᴵᵀ(this, BBC -> {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.魎ᴵᴺᴵᵀ(this, BBC -> {
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.DIAL_TONE, dialTone);
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.CHINA_KEY, chinaKey);
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.CHINA_VALUE, chinaValue);
|
||||
|
|
|
@ -23,7 +23,7 @@ public enum T08PartOctal implements BãßBȍőnPartShiftBitsʸᴰ<T08PartOctal>
|
|||
public final static T08PartOctal STATIC = T08PartOctal.PART_1;
|
||||
|
||||
private T08PartOctal(String dialTone, String chinaKey, String chinaValue, int shiftBits) {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.仙ᴵᴺᴵᵀ(this, BBC -> {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.魎ᴵᴺᴵᵀ(this, BBC -> {
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.DIAL_TONE, dialTone);
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.CHINA_KEY, chinaKey);
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.CHINA_VALUE, chinaValue);
|
||||
|
|
|
@ -22,7 +22,7 @@ public enum T09PartNonary implements BãßBȍőnPartʸᴰ<T09PartNonary> {
|
|||
public final static T09PartNonary STATIC = T09PartNonary.PART_1;
|
||||
|
||||
private T09PartNonary(String dialTone, String chinaKey, String chinaValue) {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.仙ᴵᴺᴵᵀ(this, BBC -> {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.魎ᴵᴺᴵᵀ(this, BBC -> {
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.DIAL_TONE, dialTone);
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.CHINA_KEY, chinaKey);
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.CHINA_VALUE, chinaValue);
|
||||
|
|
|
@ -25,7 +25,7 @@ public enum T10PartDecimal implements BãßBȍőnPartAlt2ʸᴰ<T10PartDecimal> {
|
|||
public final static T10PartDecimal STATIC = T10PartDecimal.PART_1;
|
||||
|
||||
private T10PartDecimal(String dialTone, String chinaKey, String chinaValue, String alt1Value, String alt2Value) {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.仙ᴵᴺᴵᵀ(this, BBC -> {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.魎ᴵᴺᴵᵀ(this, BBC -> {
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.DIAL_TONE, dialTone);
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.CHINA_KEY, chinaKey);
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.CHINA_VALUE, chinaValue);
|
||||
|
|
|
@ -25,7 +25,7 @@ public enum T11PartUndecimal implements BãßBȍőnPartAlt1ʸᴰ<T11PartUndecima
|
|||
public final static T11PartUndecimal STATIC = T11PartUndecimal.PART_1;
|
||||
|
||||
private T11PartUndecimal(String dialTone, String chinaKey, String chinaValue, String alt1Value) {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.仙ᴵᴺᴵᵀ(this, BBC -> {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.魎ᴵᴺᴵᵀ(this, BBC -> {
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.DIAL_TONE, dialTone);
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.CHINA_KEY, chinaKey);
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.CHINA_VALUE, chinaValue);
|
||||
|
|
|
@ -26,7 +26,7 @@ public enum T12PartUncial implements BãßBȍőnPartAlt1ʸᴰ<T12PartUncial> {
|
|||
public final static T12PartUncial STATIC = T12PartUncial.PART_1;
|
||||
|
||||
private T12PartUncial(String dialTone, String chinaKey, String chinaValue, String alt1Value) {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.仙ᴵᴺᴵᵀ(this, BBC -> {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.魎ᴵᴺᴵᵀ(this, BBC -> {
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.DIAL_TONE, dialTone);
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.CHINA_KEY, chinaKey);
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.CHINA_VALUE, chinaValue);
|
||||
|
|
|
@ -30,7 +30,7 @@ public enum T16PartHex implements BãßBȍőnPartAlt1ʸᴰ<T16PartHex> {
|
|||
public final static T16PartHex STATIC = T16PartHex.PART_1;
|
||||
|
||||
private T16PartHex(String dialTone, String chinaKey, String chinaValue, String alt1Value) {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.仙ᴵᴺᴵᵀ(this, BBC -> {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.魎ᴵᴺᴵᵀ(this, BBC -> {
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.DIAL_TONE, dialTone);
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.CHINA_KEY, chinaKey);
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.CHINA_VALUE, chinaValue);
|
||||
|
|
|
@ -46,7 +46,7 @@ public enum T20PartScore implements BãßBȍőnPartAlt4ʸᴰ<T20PartScore> {
|
|||
|
||||
private T20PartScore(String dialTone, String chinaKey, String chinaValue,
|
||||
String alt1Value, String alt2Value, String alt3Value, String alt4Value) {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.仙ᴵᴺᴵᵀ(this, BBC -> {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.魎ᴵᴺᴵᵀ(this, BBC -> {
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.DIAL_TONE, dialTone);
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.CHINA_KEY, chinaKey);
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.CHINA_VALUE, chinaValue);
|
||||
|
|
|
@ -73,7 +73,7 @@ public enum T60PartSexagesimal implements BãßBȍőnPartʸᴰ<T60PartSexagesima
|
|||
public final static T60PartSexagesimal STATIC = T60PartSexagesimal.PART_1;
|
||||
|
||||
private T60PartSexagesimal(String dialTone, String chinaKey, String chinaValue) {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.仙ᴵᴺᴵᵀ(this, BBC -> {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.魎ᴵᴺᴵᵀ(this, BBC -> {
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.DIAL_TONE, dialTone);
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.CHINA_KEY, chinaKey);
|
||||
BBC.PUT_OBJ(BãßBȍőnPartNail.CHINA_VALUE, chinaValue);
|
||||
|
|
|
@ -179,7 +179,7 @@ public enum BaseGlyphSet implements DefaultEnumSetᴶᴹˣ<BaseGlyphSet,BaseGlyp
|
|||
}
|
||||
|
||||
private BaseGlyphSet(BaseGlyphSetNumber numbers, BaseGlyphSetNumber hex, BaseGlyphSetNumber gematria, Boolean reverseScript) {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.仙ᴵᴺᴵᵀ(this, BBC -> {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.魎ᴵᴺᴵᵀ(this, BBC -> {
|
||||
BBC.PUT_OBJ(BaseGlyphSetNail.NUMBERS, numbers);
|
||||
BBC.PUT_OBJ(BaseGlyphSetNail.HEXIMALS, hex);
|
||||
BBC.PUT_OBJ(BaseGlyphSetNail.GEMATRIA, gematria);
|
||||
|
|
|
@ -44,7 +44,7 @@ public enum GDXAppTos4 implements DefaultEnumInstanceᴶᴹˣ<GDXAppTos4,BãßB
|
|||
private AttributeStringᴶᴹˣ startupArgs;
|
||||
|
||||
private GDXAppTos4() {
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.仙ᴵᴺᴵᵀ(this);
|
||||
Bãß.Ꝑŕḯṿª₮ḕ.魎ᴵᴺᴵᵀ(this);
|
||||
}
|
||||
|
||||
public void BãßInit(List<String> args, int viewWidth, int viewHeight, NativeFileChooser fileChooser) {
|
||||
|
|
Loading…
Reference in a new issue