Java Code Examples for org.exolab.castor.xml.Marshaller#marshal()

The following examples show how to use org.exolab.castor.xml.Marshaller#marshal() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: BinaryExpr.java    From ralasafe with MIT License 2 votes vote down vote up
/**
 * 
 * 
 * @param out
 * @throws org.exolab.castor.xml.MarshalException if object is
 * null or if any SAXException is thrown during marshaling
 * @throws org.exolab.castor.xml.ValidationException if this
 * object is an invalid instance according to the schema
 */
public void marshal(
        final java.io.Writer out)
throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException {
    Marshaller.marshal(this, out);
}
 
Example 2
Source File: HintValue.java    From ralasafe with MIT License 2 votes vote down vote up
/**
 * 
 * 
 * @param out
 * @throws org.exolab.castor.xml.MarshalException if object is
 * null or if any SAXException is thrown during marshaling
 * @throws org.exolab.castor.xml.ValidationException if this
 * object is an invalid instance according to the schema
 */
public void marshal(
        final java.io.Writer out)
throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException {
    Marshaller.marshal(this, out);
}
 
Example 3
Source File: Where.java    From ralasafe with MIT License 2 votes vote down vote up
/**
 * 
 * 
 * @param out
 * @throws org.exolab.castor.xml.MarshalException if object is
 * null or if any SAXException is thrown during marshaling
 * @throws org.exolab.castor.xml.ValidationException if this
 * object is an invalid instance according to the schema
 */
public void marshal(
        final java.io.Writer out)
throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException {
    Marshaller.marshal(this, out);
}
 
Example 4
Source File: DefineVariable.java    From ralasafe with MIT License 2 votes vote down vote up
/**
 * 
 * 
 * @param out
 * @throws org.exolab.castor.xml.MarshalException if object is
 * null or if any SAXException is thrown during marshaling
 * @throws org.exolab.castor.xml.ValidationException if this
 * object is an invalid instance according to the schema
 */
public void marshal(
        final java.io.Writer out)
throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException {
    Marshaller.marshal(this, out);
}
 
Example 5
Source File: IsNullExpression.java    From ralasafe with MIT License 2 votes vote down vote up
/**
 * 
 * 
 * @param handler
 * @throws java.io.IOException if an IOException occurs during
 * marshaling
 * @throws org.exolab.castor.xml.ValidationException if this
 * object is an invalid instance according to the schema
 * @throws org.exolab.castor.xml.MarshalException if object is
 * null or if any SAXException is thrown during marshaling
 */
public void marshal(
        final org.xml.sax.ContentHandler handler)
throws java.io.IOException, org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException {
    Marshaller.marshal(this, handler);
}
 
Example 6
Source File: InExpression.java    From ralasafe with MIT License 2 votes vote down vote up
/**
 * 
 * 
 * @param out
 * @throws org.exolab.castor.xml.MarshalException if object is
 * null or if any SAXException is thrown during marshaling
 * @throws org.exolab.castor.xml.ValidationException if this
 * object is an invalid instance according to the schema
 */
public void marshal(
        final java.io.Writer out)
throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException {
    Marshaller.marshal(this, out);
}
 
Example 7
Source File: IsNullExprType.java    From ralasafe with MIT License 2 votes vote down vote up
/**
 * 
 * 
 * @param out
 * @throws org.exolab.castor.xml.MarshalException if object is
 * null or if any SAXException is thrown during marshaling
 * @throws org.exolab.castor.xml.ValidationException if this
 * object is an invalid instance according to the schema
 */
public void marshal(
        final java.io.Writer out)
throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException {
    Marshaller.marshal(this, out);
}
 
Example 8
Source File: Column.java    From ralasafe with MIT License 2 votes vote down vote up
/**
 * 
 * 
 * @param handler
 * @throws java.io.IOException if an IOException occurs during
 * marshaling
 * @throws org.exolab.castor.xml.ValidationException if this
 * object is an invalid instance according to the schema
 * @throws org.exolab.castor.xml.MarshalException if object is
 * null or if any SAXException is thrown during marshaling
 */
public void marshal(
        final org.xml.sax.ContentHandler handler)
throws java.io.IOException, org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException {
    Marshaller.marshal(this, handler);
}
 
Example 9
Source File: FromType.java    From ralasafe with MIT License 2 votes vote down vote up
/**
 * 
 * 
 * @param handler
 * @throws java.io.IOException if an IOException occurs during
 * marshaling
 * @throws org.exolab.castor.xml.ValidationException if this
 * object is an invalid instance according to the schema
 * @throws org.exolab.castor.xml.MarshalException if object is
 * null or if any SAXException is thrown during marshaling
 */
public void marshal(
        final org.xml.sax.ContentHandler handler)
throws java.io.IOException, org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException {
    Marshaller.marshal(this, handler);
}
 
Example 10
Source File: LeftOfIn.java    From ralasafe with MIT License 2 votes vote down vote up
/**
 * 
 * 
 * @param handler
 * @throws java.io.IOException if an IOException occurs during
 * marshaling
 * @throws org.exolab.castor.xml.ValidationException if this
 * object is an invalid instance according to the schema
 * @throws org.exolab.castor.xml.MarshalException if object is
 * null or if any SAXException is thrown during marshaling
 */
public void marshal(
        final org.xml.sax.ContentHandler handler)
throws java.io.IOException, org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException {
    Marshaller.marshal(this, handler);
}
 
Example 11
Source File: HintValueType.java    From ralasafe with MIT License 2 votes vote down vote up
/**
 * 
 * 
 * @param out
 * @throws org.exolab.castor.xml.MarshalException if object is
 * null or if any SAXException is thrown during marshaling
 * @throws org.exolab.castor.xml.ValidationException if this
 * object is an invalid instance according to the schema
 */
public void marshal(
        final java.io.Writer out)
throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException {
    Marshaller.marshal(this, out);
}
 
Example 12
Source File: TableType.java    From ralasafe with MIT License 2 votes vote down vote up
/**
 * 
 * 
 * @param handler
 * @throws java.io.IOException if an IOException occurs during
 * marshaling
 * @throws org.exolab.castor.xml.ValidationException if this
 * object is an invalid instance according to the schema
 * @throws org.exolab.castor.xml.MarshalException if object is
 * null or if any SAXException is thrown during marshaling
 */
public void marshal(
        final org.xml.sax.ContentHandler handler)
throws java.io.IOException, org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException {
    Marshaller.marshal(this, handler);
}
 
Example 13
Source File: SimpleValueType.java    From ralasafe with MIT License 2 votes vote down vote up
/**
 * 
 * 
 * @param out
 * @throws org.exolab.castor.xml.MarshalException if object is
 * null or if any SAXException is thrown during marshaling
 * @throws org.exolab.castor.xml.ValidationException if this
 * object is an invalid instance according to the schema
 */
public void marshal(
        final java.io.Writer out)
throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException {
    Marshaller.marshal(this, out);
}
 
Example 14
Source File: InExpr.java    From ralasafe with MIT License 2 votes vote down vote up
/**
 * 
 * 
 * @param handler
 * @throws java.io.IOException if an IOException occurs during
 * marshaling
 * @throws org.exolab.castor.xml.ValidationException if this
 * object is an invalid instance according to the schema
 * @throws org.exolab.castor.xml.MarshalException if object is
 * null or if any SAXException is thrown during marshaling
 */
public void marshal(
        final org.xml.sax.ContentHandler handler)
throws java.io.IOException, org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException {
    Marshaller.marshal(this, handler);
}
 
Example 15
Source File: OrderByType.java    From ralasafe with MIT License 2 votes vote down vote up
/**
 * 
 * 
 * @param handler
 * @throws java.io.IOException if an IOException occurs during
 * marshaling
 * @throws org.exolab.castor.xml.ValidationException if this
 * object is an invalid instance according to the schema
 * @throws org.exolab.castor.xml.MarshalException if object is
 * null or if any SAXException is thrown during marshaling
 */
public void marshal(
        final org.xml.sax.ContentHandler handler)
throws java.io.IOException, org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException {
    Marshaller.marshal(this, handler);
}
 
Example 16
Source File: BusinessDataList.java    From ralasafe with MIT License 2 votes vote down vote up
/**
 * 
 * 
 * @param out
 * @throws org.exolab.castor.xml.MarshalException if object is
 * null or if any SAXException is thrown during marshaling
 * @throws org.exolab.castor.xml.ValidationException if this
 * object is an invalid instance according to the schema
 */
public void marshal(
        final java.io.Writer out)
throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException {
    Marshaller.marshal(this, out);
}
 
Example 17
Source File: Left.java    From ralasafe with MIT License 2 votes vote down vote up
/**
 * 
 * 
 * @param out
 * @throws org.exolab.castor.xml.MarshalException if object is
 * null or if any SAXException is thrown during marshaling
 * @throws org.exolab.castor.xml.ValidationException if this
 * object is an invalid instance according to the schema
 */
public void marshal(
        final java.io.Writer out)
throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException {
    Marshaller.marshal(this, out);
}
 
Example 18
Source File: HintValue.java    From ralasafe with MIT License 2 votes vote down vote up
/**
 * 
 * 
 * @param handler
 * @throws java.io.IOException if an IOException occurs during
 * marshaling
 * @throws org.exolab.castor.xml.ValidationException if this
 * object is an invalid instance according to the schema
 * @throws org.exolab.castor.xml.MarshalException if object is
 * null or if any SAXException is thrown during marshaling
 */
public void marshal(
        final org.xml.sax.ContentHandler handler)
throws java.io.IOException, org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException {
    Marshaller.marshal(this, handler);
}
 
Example 19
Source File: Select.java    From ralasafe with MIT License 2 votes vote down vote up
/**
 * 
 * 
 * @param out
 * @throws org.exolab.castor.xml.MarshalException if object is
 * null or if any SAXException is thrown during marshaling
 * @throws org.exolab.castor.xml.ValidationException if this
 * object is an invalid instance according to the schema
 */
public void marshal(
        final java.io.Writer out)
throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException {
    Marshaller.marshal(this, out);
}
 
Example 20
Source File: WhereType.java    From ralasafe with MIT License 2 votes vote down vote up
/**
 * 
 * 
 * @param handler
 * @throws java.io.IOException if an IOException occurs during
 * marshaling
 * @throws org.exolab.castor.xml.ValidationException if this
 * object is an invalid instance according to the schema
 * @throws org.exolab.castor.xml.MarshalException if object is
 * null or if any SAXException is thrown during marshaling
 */
public void marshal(
        final org.xml.sax.ContentHandler handler)
throws java.io.IOException, org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException {
    Marshaller.marshal(this, handler);
}