Package io.github.cdklabs.projen.vscode
Interface Presentation
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
Presentation.Jsii$Proxy
@Generated(value="jsii-pacmak/1.96.0 (build 921e240)", date="2024-03-28T21:16:43.321Z") @Stability(Experimental) public interface Presentation extends software.amazon.jsii.JsiiSerializable
(experimental) VSCode launch configuration Presentation interface "using the order, group, and hidden attributes in the presentation object you can sort, group, and hide configurations and compounds in the Debug configuration dropdown and in the Debug quick pick." Source: https://code.visualstudio.com/docs/editor/debugging#_launchjson-attributes.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classPresentation.BuilderA builder forPresentationstatic classPresentation.Jsii$ProxyAn implementation forPresentation
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static Presentation.Builderbuilder()StringgetGroup()BooleangetHidden()NumbergetOrder()
-
-
-
Method Detail
-
getGroup
@Stability(Experimental) @NotNull String getGroup()
-
getHidden
@Stability(Experimental) @NotNull Boolean getHidden()
-
getOrder
@Stability(Experimental) @NotNull Number getOrder()
-
builder
@Stability(Experimental) static Presentation.Builder builder()
- Returns:
- a
Presentation.BuilderofPresentation
-
-