Refactoring: Inline Temp

As I showed in previous post it is useful to use Inline Method when we have a lot of functionality which is on several methods and need to put this functionality to the one method.
In this post I want to show, in my point of view, subtechnique of Inline Method which is called Inline Temp. Continue reading Refactoring: Inline Temp

  • Share/Bookmark

Refactoring: Inline Method

In this post I want to show other practice which works in other way then Extract Method technique.
It is called Inline Method.
As usual I will show example for understanding. Continue reading Refactoring: Inline Method

  • Share/Bookmark

Refactoring: Extract Method

I didn’t update resource because I hadn’t time for it. Now I start working on it as I worked before – I hope :) .
I changed my workplace and now I am working at SoftServe company. Currently I don’t work with Android platform.
I start this category for new developers who only start their way in this business. And I am going to start with basic things such refactoring. In my point of view every developer should know these methods. Continue reading Refactoring: Extract Method

  • Share/Bookmark

NetBeans 6.9 Beta is available

The NetBeans team announced that beta of 6.9 version is available for download.

Feature highlights:
OSGi

Develop OSGi bundles with Maven
Bundled Felix container, ability to register other containers such as Equinox
Use OSGi bundles in a NetBeans RCP application

NetBeans Platform

OSGi interoperability (developing and consuming OSGi bundles in Platform-based applications)
Felix 2.0.3 OSGi support, experimental Equinox support
Convert NetBeans modules into OSGi bundles . . . → Read More: NetBeans 6.9 Beta is available

  • Share/Bookmark

IntelliJ IDEA 9.0.2 is out

Download page and Release . . . → Read More: IntelliJ IDEA 9.0.2 is out

  • Share/Bookmark

Using Sequence Input Stream in Java

In this post I am going to show you how to use SequenceInputStream in Java. A SequenceInputStream first reads all the bytes from the first stream in the sequence, then all the bytes from the second, third and so on. When the end of one stream is reached, that stream is closed and the next data . . . → Read More: Using Sequence Input Stream in Java

  • Share/Bookmark

MyEclipse 8.5 is released

Genuitec announced that MyEclipse 8.5 is released.
For me, MyEclipse is on of the best Eclipse based IDE in the world.
The newest release includes updates for many popular open source frameworks (including Spring and Hibernate), and includes C/ALM (Collaboration Application Lifecycle Management) technologies. For Blue users, MyEclipse 8.5 includes support for Linux operating systems and . . . → Read More: MyEclipse 8.5 is released

  • Share/Bookmark

Java SE Development Kit 6 Update 20 is available

You can download it from this link.
Details you can find on Release . . . → Read More: Java SE Development Kit 6 Update 20 is available

  • Share/Bookmark

Java SE Development Kit 6 Update 19 is available

You can download it from this link.
Details you can find on Release . . . → Read More: Java SE Development Kit 6 Update 19 is available

  • Share/Bookmark

Using system properties in Java

The System class maintains a Properties object that describes the configuration of the current working environment. System properties include information about the current user, the current version of the Java runtime, and the character used to separate components of a file path name.
In this post I am going to show simple example which shows how to . . . → Read More: Using system properties in Java

  • Share/Bookmark