Skip to content

Instantly share code, notes, and snippets.

@AdamBien
Forked from gunnarmorling/ZOMG.java
Last active December 7, 2021 09:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AdamBien/33d62d97cb66ae3988aa4520aa49221a to your computer and use it in GitHub Desktop.
Save AdamBien/33d62d97cb66ae3988aa4520aa49221a to your computer and use it in GitHub Desktop.
package org.kcctl.command;
/**
* A Java annotation with a Java text block including YAML inside a XML's CData.
*/
@TextBlocksRock(
"""
<?xml version="1.0"?>
<we>
<![CDATA[
can:
do: |
{
"it" : true
}
]] >
</we>
"""
)
/**
* A public class named ZOMG
*/
public class ZOMG {
}
/**
* An annotation named TextBlocksRock
*/
@interface TextBlocksRock {
String value();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment