Javolution 6.0.0 java
DefaultTextFormat.java
Go to the documentation of this file.
1 /*
2  * Javolution - Java(TM) Solution for Real-Time and Embedded Systems
3  * Copyright (C) 2012 - Javolution (http://javolution.org/)
4  * All rights reserved.
5  *
6  * Permission to use, copy, modify, and distribute this software is
7  * freely granted, provided that this notice is preserved.
8  */
9 package javolution.text;
10 
11 import java.lang.annotation.Documented;
12 import java.lang.annotation.ElementType;
13 import java.lang.annotation.Inherited;
14 import java.lang.annotation.Retention;
15 import java.lang.annotation.RetentionPolicy;
16 import java.lang.annotation.Target;
17 
18 
49 @Documented
50 @Inherited
51 @Target(ElementType.TYPE)
52 @Retention(RetentionPolicy.RUNTIME)
53 public @interface DefaultTextFormat {
54 
58  Class<? extends TextFormat<?>> value();
59 
60 }
javolution.text.DefaultTextFormat.value
Class<? extends TextFormat<?> > value()
javolution.text.DefaultTextFormat
Definition: DefaultTextFormat.java:53