
software.constructs.IConstruct Maven / Gradle / Ivy
package software.constructs;
/**
* Represents a construct.
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.53.0 (build c071d26)", date = "2022-02-11T00:09:31.396Z")
@software.amazon.jsii.Jsii(module = software.constructs.$Module.class, fqn = "constructs.IConstruct")
@software.amazon.jsii.Jsii.Proxy(IConstruct.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public interface IConstruct extends software.amazon.jsii.JsiiSerializable, software.constructs.IDependable {
/**
* The tree node.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@org.jetbrains.annotations.NotNull software.constructs.Node getNode();
/**
* A proxy class which represents a concrete javascript instance of this type.
*/
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements software.constructs.IConstruct.Jsii$Default {
protected Jsii$Proxy(final software.amazon.jsii.JsiiObjectRef objRef) {
super(objRef);
}
/**
* The tree node.
*/
@Override
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public final @org.jetbrains.annotations.NotNull software.constructs.Node getNode() {
return software.amazon.jsii.Kernel.get(this, "node", software.amazon.jsii.NativeType.forClass(software.constructs.Node.class));
}
}
/**
* Internal default implementation for {@link IConstruct}.
*/
@software.amazon.jsii.Internal
interface Jsii$Default extends IConstruct, software.constructs.IDependable.Jsii$Default {
/**
* The tree node.
*/
@Override
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.NotNull software.constructs.Node getNode() {
return software.amazon.jsii.Kernel.get(this, "node", software.amazon.jsii.NativeType.forClass(software.constructs.Node.class));
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy