/* * 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); } }