* Updated headers.
libjava/classpath
	* tools/gnu/classpath/tools/javah/FieldHelper.java (print): Print
	'volatile' after field type.

From-SVN: r121215
This commit is contained in:
Tom Tromey
2007-01-26 23:07:08 +00:00
committed by Tom Tromey
parent cdd76d88c8
commit 7969a3791e
41 changed files with 78 additions and 69 deletions
@@ -1,5 +1,5 @@
/* FieldHelper.java - field helper methods for CNI
Copyright (C) 2006 Free Software Foundation, Inc.
Copyright (C) 2006, 2007 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -52,12 +52,12 @@ public class FieldHelper
out.print(" ");
if (Modifier.isStatic(field.access))
out.print("static ");
if (Modifier.isVolatile(field.access))
out.print("volatile ");
if ((field.value instanceof Integer) || (field.value instanceof Long))
out.print("const ");
out.print(Type.getType(field.desc));
out.print(" ");
if (Modifier.isVolatile(field.access))
out.print("volatile ");
boolean result = false;
if (superType != null && ! Modifier.isStatic(field.access))
{