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

Quick Search    Search Deep

Source code: com/sonoma/XSLParam.java


1   package com.sonoma;
2   /**
3   * Simple class to hold name - value pair for XSL parameters
4   * Other classes and JSP pages use this object instead of Xerces or XML.
5   * XSLParam.java
6   * @author Roy Hoobler
7   * @version 1.1 04/7/2002
8   */
9   public class XSLParam{
10  protected String strName = new String();
11  protected String strValue = new String();
12          public XSLParam(String ParamName, String ParamValue){
13                  strName = ParamName;
14                  strValue = ParamValue;
15                  }
16         public XSLParam(){
17                 }
18         public String ParamName(){
19                 return strName;
20                 }
21         public String ParamValue(){
22                 return strValue;
23                 }
24  }