Pragmatic Programmer Issues

2008 - 11 Archive

InteliJ Program

Comments: 1

Some time ago I agree to take participation in Banner Program. Now I’ve got JetBrains Banner on my sidebar, currently still pointing to ReSharper . I IntelliJ user but some time ago I get ReSharper. I’ve got two account that was merged. Currently I’ve got only one and wait for banner for InteliJ 8. If […]

Categories

Packages – Java Specification chapter seven

Today I cover chapter seven. Java programs are set of packages. Packages prevent name conflicts. Packages has two kind of members the first is subpackage the second one is top level class or interface. In the same package it is forbidden to have two members with the same name. So in package java.lang when we […]

Categories

SpringSource – Developing Rich Web Applications with Spring

Comments: 1

Today I’ve just finished a training from SpringSource about developing Rich Web Developing. Our trainee was Marten Denium. This was very nice training and one day we go with Marten to CK Oberza. It was quite nice time, and we get some information about Spring 3.0, maintenance policy, Spring Tool Suite and of course about […]

Categories

Names – Java Specification chapter six

Comments: 1

Today I cover chapter six of Java Specification. The chapter is about names. Names are used to refer to entities in our program. Name can be : (package, class type, interface type, field, method, reference type, type parameter, constructor, exception handler or local variable. Name can be simple (without dot) and qualified (with dot) Every […]

Categories