mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
[javadoc][snippet] IDEA-285783 Add snippet to allowed javadoc tags
GitOrigin-RevId: 326a6039748ff843277f9731853d06e6ac9cc417
This commit is contained in:
committed by
intellij-monorepo-bot
parent
10b7fa124a
commit
c9e32ed723
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* {@snippet lang=JAVA :
|
||||
* public class ShowOptional {
|
||||
* void show(Optional<String> v) {
|
||||
* // @start region="example"
|
||||
* if (v.isPresent()) {
|
||||
* System.out.println("v: " + v.get());
|
||||
* }
|
||||
* // @end
|
||||
* }
|
||||
* }
|
||||
* }
|
||||
*/
|
||||
class Main {
|
||||
}
|
||||
Reference in New Issue
Block a user