[fpc-pascal] Re: Questions About Porting Java and Extended Class Syntax Features

2012-11-08 Thread leledumbo
> As an aside, I would like to note that after a couple of years away I still see the same contributers in this list, and it is excellent to find that support and commitment. It's not our time yet to retire and hand over the kingdom to the little princes (single 's') out there, as they still need

Re: [fpc-pascal] Re: Questions About Porting Java and Extended Class Syntax Features

2012-11-07 Thread Sven Barth
Am 07.11.2012 18:33 schrieb "bsquared" : > As an aside, I would like to note that after a couple of years away I still see the same contributers in this list, and it is excellent to find that support and commitment. After all we have to keep the Pascal community living (or spoken in a recent conte

[fpc-pascal] Re: Questions About Porting Java and Extended Class Syntax Features

2012-11-07 Thread bsquared
On 11/06/2012 07:44 PM, leledumbo wrote: What is the best way to port 'private static final' member? private class var (assuming you want to declare a variable). private static final Set = STATIC_SET; static { STATIC_SET = new HashSet; STATIC_SET.Add("A Value"); ... } Static

[fpc-pascal] Re: Questions About Porting Java and Extended Class Syntax Features

2012-11-06 Thread leledumbo
> What is the best way to port 'private static final' member? private class var (assuming you want to declare a variable). > private static final Set = STATIC_SET; static { STATIC_SET = new HashSet; STATIC_SET.Add("A Value"); ... } Static initialization block has no equivalent i