代码搜索:Annotation
找到约 6,069 项符合「Annotation」的源代码
代码结果 6,069
www.eeworm.com/read/421977/10672405
mdl c4mvdp2.mdl
Model {
Name "c4mvdp2"
Version 4.00
SampleTimeColors off
LibraryLinkDisplay "none"
WideLines off
ShowLineDimensions off
ShowPortDataTypes off
ShowStorageClass
www.eeworm.com/read/421977/10672669
mdl c7fvdp2.mdl
Model {
Name "c7fvdp2"
Version 4.00
SampleTimeColors off
LibraryLinkDisplay "none"
WideLines off
ShowLineDimensions off
ShowPortDataTypes off
ShowStorageClass
www.eeworm.com/read/421977/10672686
mdl c4mvdp1.mdl
Model {
Name "c4mvdp1"
Version 4.00
SampleTimeColors off
LibraryLinkDisplay "none"
WideLines off
ShowLineDimensions off
ShowPortDataTypes off
ShowStorageClass
www.eeworm.com/read/421977/10672723
mdl c5fsco1.mdl
Model {
Name "c5fsco1"
Version 4.00
SampleTimeColors off
LibraryLinkDisplay "none"
WideLines off
ShowLineDimensions off
ShowPortDataTypes off
ShowStorageClass
www.eeworm.com/read/419922/10829051
java test.java
package com.langsin.annotation;
public class Test
{
public static void main(String[] args)
{
Class c = Parent.class;
if(c.isAnnotationPresent(InheritedTest.class))
{
I
www.eeworm.com/read/419922/10829058
java annotationtest.java
package com.langsin.annotation;
public @interface AnnotationTest
{
EnumTest value1() default EnumTest.Hello;
String[] value2();
}
enum EnumTest
{
Hello, World, Welcome;
}
www.eeworm.com/read/419922/10829060
java parent.java
package com.langsin.annotation;
@InheritedTest("langsin")
public class Parent
{
public void doSomething()
{
System.out.println("hello");
}
}
www.eeworm.com/read/419922/10829063
java inheritedtest.java
package com.langsin.annotation;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME)
public @interface InheritedTest
{
Str
www.eeworm.com/read/419922/10829065
java documentedannotation.java
package com.langsin.annotation;
import java.lang.annotation.Documented;
@Documented
public @interface DocumentedAnnotation
{
String hello();
}