This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Retention(RetentionPolicy.RUNTIME) | |
@Target(ElementType.TYPE) | |
public @interface Execute { | |
String target() default ""; | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//http://unicode-table.com/es/ | |
String message = "esto es un "+'\u0022'+"hola"+'\u0022'; | |
System.out.println("message "+message); | |
Log.i("CONSOLE", "message "+message); | |
//output | |
message esto es un "hola" |