Example usage for com.liferay.portal.xml XMLSchemaImpl XMLSchemaImpl

List of usage examples for com.liferay.portal.xml XMLSchemaImpl XMLSchemaImpl

Introduction

In this page you can find the example usage for com.liferay.portal.xml XMLSchemaImpl XMLSchemaImpl.

Prototype

XMLSchemaImpl

Source Link

Usage

From source file:com.liferay.dynamic.data.mapping.internal.util.DDMXMLImpl.java

License:Open Source License

public XMLSchema getXMLSchema() {
    if (_xmlSchema == null) {
        XMLSchemaImpl xmlSchema = new XMLSchemaImpl();

        xmlSchema.setSchemaLanguage("http://www.w3.org/2001/XMLSchema");
        xmlSchema.setSystemId("http://www.liferay.com/dtd/liferay-ddm-structure_6_2_0.xsd");

        _xmlSchema = xmlSchema;/*from   ww  w .  j  a  v a 2s. co m*/
    }

    return _xmlSchema;
}