📄 projects.java
字号:
/**
* Projects.java
*
* This file was auto-generated from WSDL
* by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
*/
package com.sixtwenty;
public class Projects implements java.io.Serializable {
private java.lang.String proj_description;
private java.lang.String proj_id;
private java.lang.String proj_name;
private java.lang.String proj_url;
private java.lang.String semester;
private java.lang.String subj_code;
private java.lang.String year;
public Projects() {
}
public Projects(
java.lang.String proj_description,
java.lang.String proj_id,
java.lang.String proj_name,
java.lang.String proj_url,
java.lang.String semester,
java.lang.String subj_code,
java.lang.String year) {
this.proj_description = proj_description;
this.proj_id = proj_id;
this.proj_name = proj_name;
this.proj_url = proj_url;
this.semester = semester;
this.subj_code = subj_code;
this.year = year;
}
/**
* Gets the proj_description value for this Projects.
*
* @return proj_description
*/
public java.lang.String getProj_description() {
return proj_description;
}
/**
* Sets the proj_description value for this Projects.
*
* @param proj_description
*/
public void setProj_description(java.lang.String proj_description) {
this.proj_description = proj_description;
}
/**
* Gets the proj_id value for this Projects.
*
* @return proj_id
*/
public java.lang.String getProj_id() {
return proj_id;
}
/**
* Sets the proj_id value for this Projects.
*
* @param proj_id
*/
public void setProj_id(java.lang.String proj_id) {
this.proj_id = proj_id;
}
/**
* Gets the proj_name value for this Projects.
*
* @return proj_name
*/
public java.lang.String getProj_name() {
return proj_name;
}
/**
* Sets the proj_name value for this Projects.
*
* @param proj_name
*/
public void setProj_name(java.lang.String proj_name) {
this.proj_name = proj_name;
}
/**
* Gets the proj_url value for this Projects.
*
* @return proj_url
*/
public java.lang.String getProj_url() {
return proj_url;
}
/**
* Sets the proj_url value for this Projects.
*
* @param proj_url
*/
public void setProj_url(java.lang.String proj_url) {
this.proj_url = proj_url;
}
/**
* Gets the semester value for this Projects.
*
* @return semester
*/
public java.lang.String getSemester() {
return semester;
}
/**
* Sets the semester value for this Projects.
*
* @param semester
*/
public void setSemester(java.lang.String semester) {
this.semester = semester;
}
/**
* Gets the subj_code value for this Projects.
*
* @return subj_code
*/
public java.lang.String getSubj_code() {
return subj_code;
}
/**
* Sets the subj_code value for this Projects.
*
* @param subj_code
*/
public void setSubj_code(java.lang.String subj_code) {
this.subj_code = subj_code;
}
/**
* Gets the year value for this Projects.
*
* @return year
*/
public java.lang.String getYear() {
return year;
}
/**
* Sets the year value for this Projects.
*
* @param year
*/
public void setYear(java.lang.String year) {
this.year = year;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof Projects)) return false;
Projects other = (Projects) obj;
if (obj == null) return false;
if (this == obj) return true;
if (__equalsCalc != null) {
return (__equalsCalc == obj);
}
__equalsCalc = obj;
boolean _equals;
_equals = true &&
((this.proj_description==null && other.getProj_description()==null) ||
(this.proj_description!=null &&
this.proj_description.equals(other.getProj_description()))) &&
((this.proj_id==null && other.getProj_id()==null) ||
(this.proj_id!=null &&
this.proj_id.equals(other.getProj_id()))) &&
((this.proj_name==null && other.getProj_name()==null) ||
(this.proj_name!=null &&
this.proj_name.equals(other.getProj_name()))) &&
((this.proj_url==null && other.getProj_url()==null) ||
(this.proj_url!=null &&
this.proj_url.equals(other.getProj_url()))) &&
((this.semester==null && other.getSemester()==null) ||
(this.semester!=null &&
this.semester.equals(other.getSemester()))) &&
((this.subj_code==null && other.getSubj_code()==null) ||
(this.subj_code!=null &&
this.subj_code.equals(other.getSubj_code()))) &&
((this.year==null && other.getYear()==null) ||
(this.year!=null &&
this.year.equals(other.getYear())));
__equalsCalc = null;
return _equals;
}
private boolean __hashCodeCalc = false;
public synchronized int hashCode() {
if (__hashCodeCalc) {
return 0;
}
__hashCodeCalc = true;
int _hashCode = 1;
if (getProj_description() != null) {
_hashCode += getProj_description().hashCode();
}
if (getProj_id() != null) {
_hashCode += getProj_id().hashCode();
}
if (getProj_name() != null) {
_hashCode += getProj_name().hashCode();
}
if (getProj_url() != null) {
_hashCode += getProj_url().hashCode();
}
if (getSemester() != null) {
_hashCode += getSemester().hashCode();
}
if (getSubj_code() != null) {
_hashCode += getSubj_code().hashCode();
}
if (getYear() != null) {
_hashCode += getYear().hashCode();
}
__hashCodeCalc = false;
return _hashCode;
}
// Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new org.apache.axis.description.TypeDesc(Projects.class, true);
static {
typeDesc.setXmlType(new javax.xml.namespace.QName("sixtwenty.com", "Projects"));
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("proj_description");
elemField.setXmlName(new javax.xml.namespace.QName("", "proj_description"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setNillable(true);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("proj_id");
elemField.setXmlName(new javax.xml.namespace.QName("", "proj_id"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setNillable(true);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("proj_name");
elemField.setXmlName(new javax.xml.namespace.QName("", "proj_name"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setNillable(true);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("proj_url");
elemField.setXmlName(new javax.xml.namespace.QName("", "proj_url"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setNillable(true);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("semester");
elemField.setXmlName(new javax.xml.namespace.QName("", "semester"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setNillable(true);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("subj_code");
elemField.setXmlName(new javax.xml.namespace.QName("", "subj_code"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setNillable(true);
typeDesc.addFieldDesc(elemField);
elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("year");
elemField.setXmlName(new javax.xml.namespace.QName("", "year"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
elemField.setNillable(true);
typeDesc.addFieldDesc(elemField);
}
/**
* Return type metadata object
*/
public static org.apache.axis.description.TypeDesc getTypeDesc() {
return typeDesc;
}
/**
* Get Custom Serializer
*/
public static org.apache.axis.encoding.Serializer getSerializer(
java.lang.String mechType,
java.lang.Class _javaType,
javax.xml.namespace.QName _xmlType) {
return
new org.apache.axis.encoding.ser.BeanSerializer(
_javaType, _xmlType, typeDesc);
}
/**
* Get Custom Deserializer
*/
public static org.apache.axis.encoding.Deserializer getDeserializer(
java.lang.String mechType,
java.lang.Class _javaType,
javax.xml.namespace.QName _xmlType) {
return
new org.apache.axis.encoding.ser.BeanDeserializer(
_javaType, _xmlType, typeDesc);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -