Wed Jul 29, 2009 3:59 pm
public List<Object> getContent() {
if (content == null) {
content = new ArrayList<Object>();
}
return this.content;
}
<jxb:bindings version="2.0"
xmlns:jxb="http://java.sun.com/xml/ns/jaxb"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<jxb:bindings schemaLocation="bib.xsd" node="/schema">
<jxb:globalBindings bindingStyle="modelGroupBinding"/>
<jxb:schemaBindings>
<jxb:package name="poiuu"/>
</jxb:schemaBindings>
</jxb:bindings>
</jxb:bindings>
Wed Jul 29, 2009 11:49 pm
public List<Object> getContent() {
if (content == null) {
content = new ArrayList<Object>();
}
return this.content;
}
Thu Jul 30, 2009 12:19 am
Thu Jul 30, 2009 8:33 am
Thu Jul 30, 2009 8:55 am
<complexType name="access-value"/>
Thu Jul 30, 2009 9:39 am
Thu Jul 30, 2009 9:49 am
Fri Jul 31, 2009 3:46 pm
<element name="ACCESS">
<complexType>
<choice>
<element name="nonident" type="access-value"/>
<element name="ident-contact" type="access-value"/>
<element name="other-ident" type="access-value"/>
<element name="contact-and-other" type="access-value"/>
<element name="all" type="access-value"/>
<element name="none" type="access-value"/>
</choice>
</complexType>
</element>
<complexType name="access-value"/>
@XmlRootElement(name = "ACCESS")
public class ACCESS {
protected AccessValue nonident;
@XmlElement(name = "ident-contact")
protected AccessValue identContact;
@XmlElement(name = "other-ident")
protected AccessValue otherIdent;
@XmlElement(name = "contact-and-other")
protected AccessValue contactAndOther;
protected AccessValue all;
protected AccessValue none;
/**
* Gets the value of the nonident property.
*
* @return
* possible object is
* {@link AccessValue }
*
*/
public AccessValue getNonident() {
return nonident;
}
/**
* Sets the value of the nonident property.
*
* @param value
* allowed object is
* {@link AccessValue }
*
*/
public void setNonident(AccessValue value) {
this.nonident = value;
}
/**
* Gets the value of the identContact property.
*
* @return
* possible object is
* {@link AccessValue }
*
*/
public AccessValue getIdentContact() {
return identContact;
}
/**
* Sets the value of the identContact property.
*
* @param value
* allowed object is
* {@link AccessValue }
*
*/
public void setIdentContact(AccessValue value) {
this.identContact = value;
}
/**
* Gets the value of the otherIdent property.
*
* @return
* possible object is
* {@link AccessValue }
*
*/
public AccessValue getOtherIdent() {
return otherIdent;
}
/**
* Sets the value of the otherIdent property.
*
* @param value
* allowed object is
* {@link AccessValue }
*
*/
public void setOtherIdent(AccessValue value) {
this.otherIdent = value;
}
/**
* Gets the value of the contactAndOther property.
*
* @return
* possible object is
* {@link AccessValue }
*
*/
public AccessValue getContactAndOther() {
return contactAndOther;
}
/**
* Sets the value of the contactAndOther property.
*
* @param value
* allowed object is
* {@link AccessValue }
*
*/
public void setContactAndOther(AccessValue value) {
this.contactAndOther = value;
}
/**
* Gets the value of the all property.
*
* @return
* possible object is
* {@link AccessValue }
*
*/
public AccessValue getAll() {
return all;
}
/**
* Sets the value of the all property.
*
* @param value
* allowed object is
* {@link AccessValue }
*
*/
public void setAll(AccessValue value) {
this.all = value;
}
/**
* Gets the value of the none property.
*
* @return
* possible object is
* {@link AccessValue }
*
*/
public AccessValue getNone() {
return none;
}
/**
* Sets the value of the none property.
*
* @param value
* allowed object is
* {@link AccessValue }
*
*/
public void setNone(AccessValue value) {
this.none = value;
}
}
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "access-value")
public class AccessValue {
}
AccessValue all=new AccessValue();
access. setAll(all);
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.