aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author zaaarf <zaaarf@proton.me>2023-03-29 13:41:37 +0200
committer zaaarf <zaaarf@proton.me>2023-03-29 13:41:37 +0200
commit752c7ae6abc79a511c69fa134b1859a34bcd3c11 (patch)
tree6eb7579c3a8748f0bef9a2c1eb900c778ee931e8
parent289dd2846faa6368b9b02bff83598687c636d9e8 (diff)
fix: bugs concerning fully qualified names, removed unused builder for types0.4.1
-rw-r--r--src/main/java/ftbsc/lll/proxies/impl/TypeProxy.java107
1 files changed, 17 insertions, 90 deletions
diff --git a/src/main/java/ftbsc/lll/proxies/impl/TypeProxy.java b/src/main/java/ftbsc/lll/proxies/impl/TypeProxy.java
index 4be27df..022a286 100644
--- a/src/main/java/ftbsc/lll/proxies/impl/TypeProxy.java
+++ b/src/main/java/ftbsc/lll/proxies/impl/TypeProxy.java
@@ -21,7 +21,7 @@ public class TypeProxy extends QualifiableProxy {
public final boolean primitive;
/**
- * Protected constructor, called only from the builder.
+ * Protected constructor, called only from the builders.
* @param name the name of the class
* @param descriptor the descriptor of the class
* @param modifiers the modifiers of the class
@@ -29,20 +29,32 @@ public class TypeProxy extends QualifiableProxy {
* @param primitive whether the proxy is a primitive
*/
protected TypeProxy(String name, String descriptor, int modifiers, String parent, boolean primitive) {
- super(descriptor, modifiers, PackageProxy.from(parent), String.format("%s.%s", parent, name), ProxyType.TYPE);
+ super(
+ descriptor,
+ modifiers,
+ PackageProxy.from(parent),
+ parent == null ? name : String.format("%s.%s", parent, name),
+ ProxyType.TYPE
+ );
this.primitive = primitive;
}
/**
- * Protected constructor, called only from the builder.
+ * Protected constructor, called only from the builders.
* @param name the name of the class
* @param descriptor the descriptor of the element
* @param modifiers the modifiers of the class
* @param primitive whether the proxy is a primitive
* @param containerClass the FQN of the parent class of the class
*/
- protected TypeProxy(String name, String descriptor, int modifiers, QualifiableProxy containerClass, boolean primitive) {
- super(descriptor, modifiers, containerClass, String.format("%s$%s", containerClass.fullyQualifiedName, name), ProxyType.TYPE);
+ protected TypeProxy(String name, String descriptor, int modifiers, TypeProxy containerClass, boolean primitive) {
+ super(
+ descriptor,
+ modifiers,
+ containerClass,
+ String.format("%s$%s", containerClass.fullyQualifiedName, name),
+ ProxyType.TYPE
+ );
this.primitive = primitive;
}
@@ -103,15 +115,6 @@ public class TypeProxy extends QualifiableProxy {
}
/**
- * Returns a new instance of {@link TypeProxy.Builder}.
- * @param name the name of the class
- * @return the builder object for class proxies
- */
- public static Builder builder(String name) {
- return new Builder(name);
- }
-
- /**
* Indicates whether the given object is a proxy for the same element as this.
* @param obj the object to perform
* @return true if it's equal
@@ -120,80 +123,4 @@ public class TypeProxy extends QualifiableProxy {
public boolean equals(Object obj) {
return obj instanceof TypeProxy && super.equals(obj);
}
-
- /**
- * A builder object for {@link TypeProxy}.
- */
- public static class Builder extends AbstractProxy.Builder<TypeProxy> {
-
- /**
- * Whether the proxy represents a primitive.
- */
- private boolean primitive;
-
- /**
- * The constructor of the builder, used only internally.
- * @param name the "simple name" of the class
- */
- Builder(String name) {
- super(name);
- this.primitive = false;
- }
-
- /**
- * Sets this class as an inner class and sets the containing
- * class to the given class object.
- * @param containerClass the {@link Class} representing the
- * container class
- * @return the builder's state after the change
- */
- public Builder setParent(Class<?> containerClass) {
- super.setParent(TypeProxy.from(containerClass));
- return this;
- }
-
- /**
- * Sets this class as an inner class and builds a {@link TypeProxy}
- * from the given parent and modifiers.
- * @param parentFQN the fully qualified name of the parent
- * @param modifiers the modifiers of the parent (if it's a class)
- * @param isParentPackage whether this parent should be interpreted as a package or class
- * @return the builder's state after the change
- */
- public Builder setParent(String parentFQN, int modifiers, boolean isParentPackage) {
- super.setParent(isParentPackage ? PackageProxy.from(parentFQN) : TypeProxy.from(parentFQN, 0, modifiers));
- return this;
- }
-
- /**
- * Sets this class as an inner class and builds a {@link TypeProxy}
- * from the given parent.
- * @param parentFQN the fully qualified name of the parent
- * @param isParentPackage whether this parent should be interpreted as a package or class
- * @return the builder's state after the change
- */
- public Builder setParent(String parentFQN, boolean isParentPackage) {
- return this.setParent(parentFQN, 0, isParentPackage);
- }
-
- /**
- * Sets the primitive flag to true or false, to signal that the type here specified
- * is a primitive.
- * @param primitive the new state of the primitive flag
- * @return the builder's state after the change
- */
- public Builder setPrimitive(boolean primitive) {
- this.primitive = primitive;
- return this;
- }
-
- /**
- * Builds a {@link TypeProxy} of the given kind.
- * @return the built {@link TypeProxy}
- */
- @Override
- public TypeProxy build() {
- return new TypeProxy(this.name, this.descriptor, this.modifiers, this.parent, this.primitive);
- }
- }
} \ No newline at end of file