1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
| /**
* CritiqueType.java
*
* This file was auto-generated from WSDL
* by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
*/
package blablabla.services;
public class CritiqueType implements java.io.Serializable {
private java.util.Calendar date;
private java.lang.String journal;
private java.lang.String text;
public CritiqueType() {
}
public CritiqueType(
java.util.Calendar date,
java.lang.String journal,
java.lang.String text) {
this.date = date;
this.journal = journal;
this.text = text;
}
/**
* Gets the date value for this CritiqueType.
*
* @return date
*/
public java.util.Calendar getDate() {
return date;
}
/**
* Sets the date value for this CritiqueType.
*
* @param date
*/
public void setDate(java.util.Calendar date) {
this.date = date;
}
/**
* Gets the journal value for this CritiqueType.
*
* @return journal
*/
public java.lang.String getJournal() {
return journal;
}
/**
* Sets the journal value for this CritiqueType.
*
* @param journal
*/
public void setJournal(java.lang.String journal) {
this.journal = journal;
}
/**
* Gets the text value for this CritiqueType.
*
* @return text
*/
public java.lang.String getText() {
return text;
}
/**
* Sets the text value for this CritiqueType.
*
* @param text
*/
public void setText(java.lang.String text) {
this.text = text;
}
[...]
} |