About Prakash

Website: http://aprakash7.blogspot.com/
Prakash has written 166 articles so far, you can find them below.

Preparing a Doclet in Java

Doclets javadoc’s output format is determined by a ‘doclet’. The default,standard doclet is built-in to javadoc, and produces the HTML API documentation normally associated with javadoc. If you want to create custom output you can subclass the standard doclet, or you can write your own doclet. For the adventurous, you can create XML or RTF; [...]

Continue reading →

How Do A Comment Declared in Java

The Structure of a Comment As you will soon see, a single comment can grow to quite a large size. Comments can contain a wide variety of elements,but there are some restrictions to the order in which you can place these elements.To begin, the first line must start with /** (the / must be in [...]

Continue reading →

Testing Graphical Interface Applications

Testing GUI code can be extremely challenging. By their very nature, GUIs are flexible in their behaviors; even simple GUIs offer billions of possible paths through their features. So how do you test all of these paths? Well, you really can’t, but you can hit the high points, and there are approaches that will help [...]

Continue reading →

Menu Buttons Embedded with GUI

Menus are a powerful (and necessary) part of almost all GUIs. We focus our attention on the most common implementation of menus, the menu bar. An application’s main menu bar is almost always located at the top of the display—sometimes directly under an application’s title bar, and sometimes separate from the application’s main window and [...]

Continue reading →

GUI Widgets in Detail

Widget Labels are strings of text used to identify other widgets. They aretypically placed to the left or above the widget being labeled.Buttons are rectangular-shaped widgets that are used to initiate actions by the system. A button can be used to initiate either an action command or a navigational command. The nature of the command [...]

Continue reading →

How To Make Use Of Class Granularity

A class should be of the right, you know, granularity. It shouldn’t be too big or too tiny. Rarely is the problem a class that’s too small; however, most not-quite-OO programmers make classes that are too big.A class is supposed to represent a thing that has state and behaviors. Keep asking yourself, as you write [...]

Continue reading →

Genaral COnsiderations for Programming Knowledge

The general considerations for programming  looks for consistency and appropriateness in your programming style. The following will  lists some key points you should keep in mind when writing your perfectly-formatted code. Some of these will be explained in subsequent sections; several of these points are related to OO design,for example, and we cover them in [...]

Continue reading →

Architecture For Java Server Pages

The  architecture for servlets & JSP  uses three layers: (1) the presentation layer,or user interface layer, (2) the business rules layer, and (3) the data access layer. In theory, the programmer tries to keep these layers as separate and independent as possible. In practice, though, these layers are often interrelated and that’s especially true for [...]

Continue reading →

An Intro To Servlet Programming

In contrast to the JSP, the servlet is a Java class that runs on a server and does the processing for the dynamic web pages of a web application. That’s why servlets for a web application are written by web programmers, not web designers.After the processing is done, the servlet returns HTML code to the [...]

Continue reading →
Page 1 of 12123456»10...Last »