Class TypeParameterNode
- java.lang.Object
-
- proguard.classfile.attribute.signature.ast.signature.TypeParameterNode
-
public class TypeParameterNode extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description TypeParameterNode(@NotNull java.lang.String identifier, @NotNull ClassBoundNode classBound, @NotNull java.util.List<InterfaceBoundNode> interfaceBounds)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R,P>
Raccept(ASTNodeVisitor<R,P> visitor, P arg)@NotNull ClassBoundNodegetClassBound()@NotNull java.lang.StringgetIdentifier()@NotNull java.util.List<InterfaceBoundNode>getInterfaceBounds()voidsetClassBound(@NotNull ClassBoundNode classBound)voidsetIdentifier(@NotNull java.lang.String identifier)voidsetInterfaceBounds(@NotNull java.util.List<InterfaceBoundNode> interfaceBounds)@NotNull java.lang.StringtoString()
-
-
-
Constructor Detail
-
TypeParameterNode
public TypeParameterNode(@NotNull @NotNull java.lang.String identifier, @NotNull @NotNull ClassBoundNode classBound, @NotNull @NotNull java.util.List<InterfaceBoundNode> interfaceBounds)
-
-
Method Detail
-
getIdentifier
@NotNull public @NotNull java.lang.String getIdentifier()
-
setIdentifier
public void setIdentifier(@NotNull @NotNull java.lang.String identifier)
-
getClassBound
@NotNull public @NotNull ClassBoundNode getClassBound()
-
setClassBound
public void setClassBound(@NotNull @NotNull ClassBoundNode classBound)
-
getInterfaceBounds
@NotNull public @NotNull java.util.List<InterfaceBoundNode> getInterfaceBounds()
-
setInterfaceBounds
public void setInterfaceBounds(@NotNull @NotNull java.util.List<InterfaceBoundNode> interfaceBounds)
-
accept
public <R,P> R accept(ASTNodeVisitor<R,P> visitor, P arg)
-
toString
@NotNull public @NotNull java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-