Package org.exolab.castor.builder.types

Source Code of org.exolab.castor.builder.types.XSTime

/**
* Redistribution and use of this software and associated documentation
* ("Software"), with or without modification, are permitted provided
* that the following conditions are met:
*
* 1. Redistributions of source code must retain copyright
*    statements and notices.  Redistributions must also contain a
*    copy of this document.
*
* 2. Redistributions in binary form must reproduce the
*    above copyright notice, this list of conditions and the
*    following disclaimer in the documentation and/or other
*    materials provided with the distribution.
*
* 3. The name "Exolab" must not be used to endorse or promote
*    products derived from this Software without prior written
*    permission of Intalio, Inc.  For written permission,
*    please contact info@exolab.org.
*
* 4. Products derived from this Software may not be called "Exolab"
*    nor may "Exolab" appear in their names without prior written
*    permission of Intalio, Inc. Exolab is a registered
*    trademark of Intalio, Inc.
*
* 5. Due credit should be given to the Exolab Project
*    (http://www.exolab.org/).
*
* THIS SOFTWARE IS PROVIDED BY INTALIO, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT
* NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL
* INTALIO, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*
* Copyright 2000-2002 (C) Intalio, Inc. All Rights Reserved.
* $Id: XSTime.java,v 1.2 2004/10/01 13:24:47 snyder Exp $
*/

package org.exolab.castor.builder.types;

import org.exolab.castor.xml.schema.SimpleType;
import org.exolab.castor.xml.schema.Facet;
import org.exolab.castor.types.Time;
import org.exolab.javasource.*;

import java.util.Enumeration;
import java.text.ParseException;
/**
* The XML Schema time type
* @author <a href="mailto:blandin@intalio.com">Arnaud Blandin</a>
* @version $Revision: 1.2 $ $Date: 2004/10/01 13:24:47 $
**/
public final class XSTime extends XSType {

  /**
   * The JType represented by this XSType
  **/
  private static final JType jType =
    new JClass("org.exolab.castor.types.Time");

  private Time _maxInclusive;
  private Time _maxExclusive;
  private Time _minInclusive;
  private Time _minExclusive;

  public XSTime() {
    super(XSType.TIME_TYPE);
  } //-- XSTime

  /**
   * Returns the Java code necessary to create a new instance of the
   * JType associated with this XSType
   */
  public String newInstanceCode() {
    return "new " + getJType().getName() + "();";
  } //-- newInstanceCode

  /**
   * Returns the JType that this XSType represents
   * @return the JType that this XSType represents
  **/
  public JType getJType() {
    return this.jType;
  }
  /**
  * Returns the maximum exclusive value that this XSTime can hold.
  * @return the maximum exclusive value that this XSTime can hold. If
  * no maximum exclusive value has been set, Null will be returned
  * @see #getMaxInclusive
  **/
  public Time getMaxExclusive() {
    return _maxExclusive;
  } //-- getMaxExclusive

  /**
   * Returns the maximum inclusive value that this XSTime can hold.
   * @return the maximum inclusive value that this XSTime can hold. If
   * no maximum inclusive value has been set, Null will be returned
   * @see #getMaxExclusive
  **/
  public Time getMaxInclusive() {
    return _maxInclusive;
  } //-- getMaxInclusive

  /**
   * Returns the minimum exclusive value that this XSTime can hold.
   * @return the minimum exclusive value that this XSTime can hold. If
   * no minimum exclusive value has been set, Null will be returned
   * @see #getMinInclusive
   * @see #setMaxInclusive
  **/
  public Time getMinExclusive() {
    return _minExclusive;
  } //-- getMinExclusive

  /**
   * Returns the minimum inclusive value that this XSTime can hold.
   * @return the minimum inclusive value that this can XSTime hold. If
   * no minimum inclusive value has been set, Null will be returned
   * @see #getMinExclusive
  **/
  public Time getMinInclusive() {
    return _minInclusive;
  } //-- getMinInclusive

  /**
   * Sets the maximum exclusive value that this XSTime can hold.
   * @param max the maximum exclusive value this XSTime can be
   * @see #setMaxInclusive
  **/
  public void setMaxExclusive(Time max) {
    _maxExclusive = max;
    _maxInclusive = null;
  } //-- setMaxExclusive

  /**
   * Sets the maximum inclusive value that this XSTime can hold.
   * @param max the maximum inclusive value this XSTime can be
   * @see #setMaxExclusive
  **/
  public void setMaxInclusive(Time max) {
    _maxInclusive = max;
    _maxExclusive = null;
  } //-- setMaxInclusive

  /**
   * Sets the minimum exclusive value that this XSTime can hold.
   * @param max the minimum exclusive value this XSTime can be
   * @see #setMinInclusive
  **/
  public void setMinExclusive(Time min) {
    _minExclusive = min;
    _minInclusive = null;
  } //-- setMinExclusive

  /**
   * Sets the minimum inclusive value that this XSTime can hold.
   * @param max the minimum inclusive value this XSTime can be
   * @see #setMinExclusive
  **/
  public void setMinInclusive(Time min) {
    _minInclusive = min;
    _minExclusive = null;
  } //-- setMinInclusive

  public boolean hasMinimum() {
    return ((_minInclusive != null) || (_minExclusive != null));
  }

  public boolean hasMaximum() {
    return ((_maxInclusive != null) || (_maxExclusive != null));
  }

  /**
   * Reads and sets the facets for XSTime
   * override the readFacet method of XSType
   * @param simpletype the Simpletype containing the facets
   * @param xsType the XSType to set the facets of
   * @see org.exolab.castor.builder.types.XSType#getFacets
   */

  public void setFacets(SimpleType simpleType) {
    //-- copy valid facets
    Enumeration enumeration = getFacets(simpleType);
    while (enumeration.hasMoreElements()) {

      Facet facet = (Facet) enumeration.nextElement();
      String name = facet.getName();

      try {
        //-- maxExclusive
        if (Facet.MAX_EXCLUSIVE.equals(name))
          this.setMaxExclusive(Time.parseTime(facet.getValue()));
        //-- maxInclusive
        else if (Facet.MAX_INCLUSIVE.equals(name))
          this.setMaxInclusive(Time.parseTime(facet.getValue()));
        //-- minExclusive
        else if (Facet.MIN_EXCLUSIVE.equals(name))
          this.setMinExclusive(Time.parseTime(facet.getValue()));
        //-- minInclusive
        else if (Facet.MIN_INCLUSIVE.equals(name))
          this.setMinInclusive(Time.parseTime(facet.getValue()));
        //-- pattern
        else if (Facet.PATTERN.equals(name)) {
          //do nothing for the moment
          System.out.println(
            "Warning: The facet 'pattern' is not currently supported for XSTime.");
        }
      } catch (ParseException e) {
        //not possible to set the facet properly
        //This can't happen since a ParseException would have been set
        //during the unmarshalling of the facets
        e.printStackTrace();
        return;
      }
    } //while

  } //setFacets

  /**
   * Creates the validation code for an instance of this XSType. The validation
     * code should if necessary create a newly configured TypeValidator, that
     * should then be added to a FieldValidator instance whose name is provided.
   *
   * @param fixedValue a fixed value to use if any
   * @param jsc the JSourceCode to fill in.
     * @param fieldValidatorInstanceName the name of the FieldValidator
     * that the configured TypeValidator should be added to.
   */
  public void validationCode (JSourceCode jsc, String fixedValue, String fieldValidatorInstanceName) {
    if (jsc == null)
      jsc = new JSourceCode();
    jsc.add("DateTimeValidator typeValidator = new DateTimeValidator();");
    if (hasMinimum()) {
      jsc.add("try {");
      jsc.indent();
      Time min = getMinExclusive();
      if (min != null) {
        jsc.add(
          "org.exolab.castor.types.Time min ="
            + "org.exolab.castor.types.Time.parseTime("
            + "\""
            + min.toString()
            + "\");");
        jsc.add("typeValidator.setMinExclusive(");
      } else {
        min = getMinInclusive();
        jsc.add(
          "org.exolab.castor.types.Time min ="
            + "org.exolab.castor.types.Time.parseTime("
            + "\""
            + min.toString()
            + "\");");
        jsc.add("typeValidator.setMinInclusive(");
      }
      jsc.append("min");
      jsc.append(");");
      jsc.unindent();
      jsc.add("} catch (java.text.ParseException e) {");
      jsc.indent();
      jsc.add("System.out.println(e);");
      jsc.add("e.printStackTrace();");
      jsc.add("return;");
      jsc.unindent();
      jsc.add("}");

    } //hasMinimum?

    if (hasMaximum()) {
      jsc.add("try {");
      jsc.indent();
      Time max = getMaxExclusive();
      if (max != null) {
        jsc.add(
          "org.exolab.castor.types.Time max ="
            + "org.exolab.castor.types.Time.parseTime("
            + "\""
            + max.toString()
            + "\");");
        jsc.add("typeValidator.setMaxExclusive(");
      } else {
        max = getMaxInclusive();
        jsc.add(
          "org.exolab.castor.types.Time max ="
            + "org.exolab.castor.types.Time.parseTime("
            + "\""
            + max.toString()
            + "\");");
        jsc.add("typeValidator.setMaxInclusive(");
      }
      jsc.append("max");
      jsc.append(");");
      jsc.unindent();
      jsc.add("} catch (java.text.ParseException e) {");
      jsc.indent();
      jsc.add("System.out.println(e);");
      jsc.add("e.printStackTrace();");
      jsc.add("return;");
      jsc.unindent();
      jsc.add("}");

    } //hasMaximum
    //-- pattern facet
   
        jsc.add(fieldValidatorInstanceName+".setValidator(typeValidator);");
   
  }

} //-- XSTime
TOP

Related Classes of org.exolab.castor.builder.types.XSTime

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.