blob: b8f714b432052ff108c6b9c00234d4212ff79da9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/*
* Copyright (C) 2005 John D. Heintz
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public License
* as published by the Free Software Foundation; either version 2.1
* of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details.
*
* John D. Heintz can be reached at: jheintz@pobox.com
*/
package dash.obtain;
public class ObtainStaticTestClass {
@Obtain static String foo;
@Obtain static String bar;
static String baz;
public void foo() {
//System.out.println("foo: "+ObtainStaticTestClass.foo);
}
}
|