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

Quick Search    Search Deep

Source code: com/openwave/oui/framework/ErrorMsg.java


1   package com.openwave.oui.framework;
2   /**
3    * Insert the type's description here.
4    * Creation date: (18-05-2001 10:12:49)
5    * @author: Lars Gunder Knudsen
6    */
7   public class ErrorMsg {
8     private String shortDesc = "";
9     private String longDesc = "";
10    private String htmlDesc = "";
11  
12  /**
13   * ErrorMsg constructor comment.
14   */
15  public ErrorMsg() {
16    super();
17  }
18  
19  
20  /**
21   * ErrorMsg constructor comment.
22   */
23  public ErrorMsg(String shortDesc, String longDesc, String htmlDesc) {
24    super();
25    this.shortDesc = shortDesc;
26    this.longDesc = longDesc;
27    this.htmlDesc = htmlDesc;
28  }
29  
30  
31  /**
32   * Insert the method's description here.
33   * Creation date: (18-05-2001 10:16:57)
34   * @return java.lang.String
35   */
36  public String getHtmlDesc() {
37    return htmlDesc;
38  }
39  
40  
41  /**
42   * Insert the method's description here.
43   * Creation date: (18-05-2001 10:16:57)
44   * @return java.lang.String
45   */
46  public String getLongDesc() {
47    return longDesc;
48  }
49  
50  
51  /**
52   * Insert the method's description here.
53   * Creation date: (18-05-2001 10:16:57)
54   * @return java.lang.String
55   */
56  public String getShortDesc() {
57    return shortDesc;
58  }
59  
60  
61  /**
62   * Insert the method's description here.
63   * Creation date: (18-05-2001 10:16:57)
64   * @param newHtmlDesc java.lang.String
65   */
66  public void setHtmlDesc(String htmlDesc) {
67    this.htmlDesc = htmlDesc;
68  }
69  
70  
71  /**
72   * Insert the method's description here.
73   * Creation date: (18-05-2001 10:16:57)
74   * @param newLongDesc java.lang.String
75   */
76  public void setLongDesc(String longDesc) {
77    this.longDesc = longDesc;
78  }
79  
80  
81  /**
82   * Insert the method's description here.
83   * Creation date: (18-05-2001 10:16:57)
84   * @param newShortDesc java.lang.String
85   */
86  public void setShortDesc(String shortDesc) {
87    this.shortDesc = shortDesc;
88  }
89  
90  
91  /**
92   * Insert the method's description here.
93   * Creation date: (18-05-2001 10:13:22)
94   */
95  public String toString() {
96    String result = "";
97    return result;
98  }
99  }