aboutsummaryrefslogtreecommitdiffstats
path: root/demos/demos.css
blob: da9ad833afa20f7b465a88402f6cba4e0ae256a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
body {
	font-size: 62.5%;
	font-family: "Trebuchet MS", "Arial", "Helvetica", "Verdana", "sans-serif";
}

table {
	font-size: 1em;
}

.demo-description {
	clear: both;
	padding: 12px;
	font-size: 1.3em;
	line-height: 1.4em;
}

.ui-draggable, .ui-droppable {
	background-position: top;
}
n class="w"> C(); D d = new D(); A reallyB = new B(); C reallyD = new D(); a.doSomething(); b.doSomething(); c.doSomething(); d.doSomething(); reallyB.doSomething(); reallyD.doSomething(); } } @MyClassRetentionAnnotation class A { public void doSomething() {} } @MyAnnotation class B extends A { public void doSomething() {} } @MyInheritableAnnotation @MyAnnotation class C { public void doSomething() {} } class D extends C { public void doSomething() {} } @interface MyClassRetentionAnnotation {} @java.lang.annotation.Retention(value=java.lang.annotation.RetentionPolicy.RUNTIME) @interface MyAnnotation {} @java.lang.annotation.Retention(value=java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Inherited @interface MyInheritableAnnotation {}