Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.arranger.jarl.script.jarlsp
Interface JarlSPBase  view JarlSPBase download JarlSPBase.java

All Known Implementing Classes:
SimpleJarlSPBase

public interface JarlSPBase

ISPBase created on Jan 17, 2003


Method Summary
 void execute()
          Render this page
 void init(JarlSPRuntime runtime, java.util.Map properties)
          Initialize this page
 void print(boolean p)
          Prints the specified primitive.
 void print(byte p)
          Prints the specified primitive.
 void print(byte[] a)
          Prints the specified array.
 void print(byte[] a, int start, int length)
          Prints the specified array.
 void print(char p)
          Prints the specified primitive.
 void print(char[] a)
          Prints the specified array.
 void print(char[] a, int start, int length)
          Prints the specified array.
 void print(double p)
          Prints the specified primitive.
 void print(float p)
          Prints the specified primitive.
 void print(int p)
          Prints the specified primitive.
 void print(long p)
          Prints the specified primitive.
 void print(java.lang.Object o)
          Prints the specified object.
 void print(java.lang.String o)
          Prints the specified object.
 

Method Detail

init

public void init(JarlSPRuntime runtime,
                 java.util.Map properties)
Initialize this page


execute

public void execute()
             throws java.lang.Exception
Render this page


print

public void print(boolean p)
           throws java.io.IOException
Prints the specified primitive.


print

public void print(byte p)
           throws java.io.IOException
Prints the specified primitive.


print

public void print(char p)
           throws java.io.IOException
Prints the specified primitive.


print

public void print(int p)
           throws java.io.IOException
Prints the specified primitive.


print

public void print(long p)
           throws java.io.IOException
Prints the specified primitive.


print

public void print(float p)
           throws java.io.IOException
Prints the specified primitive.


print

public void print(double p)
           throws java.io.IOException
Prints the specified primitive.


print

public void print(byte[] a)
           throws java.io.IOException
Prints the specified array.


print

public void print(byte[] a,
                  int start,
                  int length)
           throws java.io.IOException
Prints the specified array.


print

public void print(char[] a)
           throws java.io.IOException
Prints the specified array.


print

public void print(char[] a,
                  int start,
                  int length)
           throws java.io.IOException
Prints the specified array.


print

public void print(java.lang.Object o)
           throws java.io.IOException
Prints the specified object.


print

public void print(java.lang.String o)
           throws java.io.IOException
Prints the specified object.