org.jcoderz.guidelines.snippets
Class IndentationSample

java.lang.Object
  extended by org.jcoderz.guidelines.snippets.IndentationSample
All Implemented Interfaces:
Serializable

public class IndentationSample
extends Object
implements Serializable

An example class.

Author:
Alexander Bretz
See Also:
Serialized Form

Constructor Summary
IndentationSample()
           
 
Method Summary
 void methodThrows(int param)
           
 void methodThrowsDeep(int param)
           
 void methodThrowsNewLine(int param)
           
 void severalParameters(String one, int two, String three, EventObject four, Integer five)
           
 void severalParametersDeep(String one, int two, String three, EventObject four, Integer five)
           
 void severalParametersNewLine(String one, int two, String three, EventObject four, Integer five)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

IndentationSample

public IndentationSample()
Method Detail

severalParameters

public void severalParameters(String one,
                              int two,
                              String three,
                              EventObject four,
                              Integer five)

severalParametersNewLine

public void severalParametersNewLine(String one,
                                     int two,
                                     String three,
                                     EventObject four,
                                     Integer five)

severalParametersDeep

public void severalParametersDeep(String one,
                                  int two,
                                  String three,
                                  EventObject four,
                                  Integer five)

methodThrows

public void methodThrows(int param)
                  throws IllegalAccessException,
                         IllegalStateException,
                         FileNotFoundException
Throws:
IllegalAccessException
IllegalStateException
FileNotFoundException

methodThrowsNewLine

public void methodThrowsNewLine(int param)
                         throws IllegalAccessException,
                                IllegalStateException,
                                FileNotFoundException
Throws:
IllegalAccessException
IllegalStateException
FileNotFoundException

methodThrowsDeep

public void methodThrowsDeep(int param)
                      throws IllegalAccessException,
                             IllegalStateException,
                             FileNotFoundException
Throws:
IllegalAccessException
IllegalStateException
FileNotFoundException


Copyright 2007 The jCoderZ Project.