<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en" xmlns="http://www.w3.org/2005/Atom"><title>Recent changes to 8: Field suffix</title><link href="https://sourceforge.net/p/openjava/bugs/8/" rel="alternate"/><link href="https://sourceforge.net/p/openjava/bugs/8/feed.atom" rel="self"/><id>https://sourceforge.net/p/openjava/bugs/8/</id><updated>2005-06-15T17:29:36Z</updated><subtitle>Recent changes to 8: Field suffix</subtitle><entry><title>Field suffix</title><link href="https://sourceforge.net/p/openjava/bugs/8/" rel="alternate"/><published>2005-06-15T17:29:36Z</published><updated>2005-06-15T17:29:36Z</updated><author><name>Michiaki Tatsubori</name><uri>https://sourceforge.net/u/tatsubori/</uri></author><id>https://sourceforge.net439c32c1d786e0e48bd9b3f36db6157afd42bc82</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;According to Daniel Schreiber,&lt;br /&gt;
he found a bug in the grammar file for&lt;br /&gt;
the parser. Although the documentation says so, and&lt;br /&gt;
the classes provide methods, the grammar does not&lt;br /&gt;
allow custom keywords after a field declaration. &lt;/p&gt;
&lt;p&gt;He changed src\openjava\tools\parser\Parser.jj at line &lt;br /&gt;
1279 from&lt;/p&gt;
&lt;p&gt;p8=VariableDeclarator( base_env )&lt;br /&gt;
{&lt;br /&gt;
FieldDeclaration fld1 = new FieldDeclaration( p1, p2, &lt;br /&gt;
p8 );&lt;/p&gt;
&lt;p&gt;to&lt;/p&gt;
&lt;p&gt;p8=VariableDeclarator( base_env )&lt;br /&gt;
sf=OpenJavaDeclSuffixListOpt( env )&lt;br /&gt;
{&lt;br /&gt;
FieldDeclaration fld1 = new FieldDeclaration( p1, p2, &lt;br /&gt;
p8 );&lt;br /&gt;
fld1.setSuffixes( sf );&lt;/p&gt;
&lt;p&gt;Thanks, Daniel!&lt;/p&gt;&lt;/div&gt;</summary></entry></feed>