23 lines
739 B
Java
23 lines
739 B
Java
package ᒢᐩᐩ.ᒡᒢᑊᒻᒻᓫᔿ;
|
||
|
||
import ᒢᐩᐩ.ᒡᒢᑊᒻᒻᓫᔿ.ᐪᓫᕽᐪ.StringUnicode;
|
||
import ᒢᐩᐩ.ᒡᒢᑊᒻᒻᓫᔿ.ᒃᣔᒃᓫᒻ.ᑊᐣᓑᖮᐪᔆ.DuytsDocAuthor注;
|
||
|
||
/**
|
||
* Mark objects which need a English latin1 human output.
|
||
*
|
||
* Human output can't be defined.
|
||
*/
|
||
@DuytsDocAuthor注(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
|
||
public interface ObjectSoundToHuman {
|
||
|
||
// it looks like this was JMX in java version 1.0
|
||
String toString(); // the biggest mistake in java
|
||
// thus for who in what format and which details...
|
||
|
||
// Every computer needs brahmi support on strings
|
||
default StringUnicode toStringUnicode() {
|
||
return StringUnicode.valueOf(toString());
|
||
}
|
||
}
|