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

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

Introduction

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

Prototype

public void setSchemaLanguage(String schemaLanguage) 

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 w  ww .ja  v  a2s.c  o  m*/
    }

    return _xmlSchema;
}