KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > bull > eclipse > newbean > FacadeValue


1 /*
2  * Created on 12 août 2004
3  *
4  * TODO To change the template for this generated file go to
5  * Window - Preferences - Java - Code Style - Code Templates
6  */

7 package com.bull.eclipse.newbean;
8
9 import java.util.Vector JavaDoc;
10
11
12 /**
13  * @author riase
14  *
15  * TODO To change the template for this generated type comment go to
16  * Window - Preferences - Java - Code Style - Code Templates
17  */

18 public class FacadeValue {
19     private String JavaDoc signature;
20     private String JavaDoc exception;
21     /**
22      * @return Returns the signature.
23      */

24     public String JavaDoc getSignature() {
25         return signature;
26     }
27     /**
28      * @param signature The signature to set.
29      */

30     public void setSignature(String JavaDoc signature) {
31         this.signature = signature;
32     }
33     /**
34      * @return Returns the exception.
35      */

36     public String JavaDoc getException() {
37         return exception;
38     }
39     /**
40      * @param exception The exception to set.
41      */

42     public void setException(String JavaDoc exception) {
43         this.exception = exception;
44     }
45 }
46
Popular Tags