~ubuntu-branches/ubuntu/wily/opencollada/wily-proposed

« back to all changes in this revision

Viewing changes to xsd2cppsax/src/de/netallied/xsd2cppsax/XSGeneratorSimpleType.java

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2015-05-14 17:23:27 UTC
  • Revision ID: package-import@ubuntu.com-20150514172327-f862u8envms01fra
Tags: upstream-0.1.0~20140703.ddf8f47+dfsg1
ImportĀ upstreamĀ versionĀ 0.1.0~20140703.ddf8f47+dfsg1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 *   Copyright © 2008-2012 NetAllied Systems GmbH, Ravensburg, Germany. 
 
3
 *       
 
4
 *   Licensed under the MIT Open Source License, 
 
5
 *   for details please see LICENSE file or the website
 
6
 *   http://www.opensource.org/licenses/mit-license.php
 
7
*/
 
8
package de.netallied.xsd2cppsax;
 
9
 
 
10
import org.apache.xerces.impl.dv.xs.XSSimpleTypeDecl;
 
11
 
 
12
/**
 
13
 * Allows creation of additional XSD types.
 
14
 * 
 
15
 * @see XSFactory.
 
16
 * 
 
17
 */
 
18
public class XSGeneratorSimpleType extends XSSimpleTypeDecl {
 
19
 
 
20
    public XSGeneratorSimpleType(String name) {
 
21
        super(null, name, /* DV_STRING */PRIMITIVE_STRING, ORDERED_FALSE, false, false, false, false, PRIMITIVE_STRING);
 
22
    }
 
23
}