Search in sources :

Example 16 with SeqType

use of org.eclipse.wst.xml.xpath2.processor.internal.SeqType in project webtools.sourceediting by eclipse.

the class FnMinutesFromDuration method expected_args.

/**
 * Obtain a list of expected arguments.
 *
 * @return Result of operation.
 */
public static synchronized Collection expected_args() {
    if (_expected_args == null) {
        _expected_args = new ArrayList();
        _expected_args.add(new SeqType(new XSDuration(), SeqType.OCC_QMARK));
    }
    return _expected_args;
}
Also used : XSDuration(org.eclipse.wst.xml.xpath2.processor.internal.types.XSDuration) SeqType(org.eclipse.wst.xml.xpath2.processor.internal.SeqType) ArrayList(java.util.ArrayList)

Example 17 with SeqType

use of org.eclipse.wst.xml.xpath2.processor.internal.SeqType in project webtools.sourceediting by eclipse.

the class FnMonthFromDate method expected_args.

/**
 * Obtain a list of expected arguments.
 *
 * @return Result of operation.
 */
public static synchronized Collection expected_args() {
    if (_expected_args == null) {
        _expected_args = new ArrayList();
        _expected_args.add(new SeqType(new XSDate(), SeqType.OCC_QMARK));
    }
    return _expected_args;
}
Also used : XSDate(org.eclipse.wst.xml.xpath2.processor.internal.types.XSDate) SeqType(org.eclipse.wst.xml.xpath2.processor.internal.SeqType) ArrayList(java.util.ArrayList)

Example 18 with SeqType

use of org.eclipse.wst.xml.xpath2.processor.internal.SeqType in project webtools.sourceediting by eclipse.

the class FnMonthsFromDuration method expected_args.

/**
 * Obtain a list of expected arguments.
 *
 * @return Result of operation.
 */
public static synchronized Collection expected_args() {
    if (_expected_args == null) {
        _expected_args = new ArrayList();
        _expected_args.add(new SeqType(new XSDuration(), SeqType.OCC_QMARK));
    }
    return _expected_args;
}
Also used : XSDuration(org.eclipse.wst.xml.xpath2.processor.internal.types.XSDuration) SeqType(org.eclipse.wst.xml.xpath2.processor.internal.SeqType) ArrayList(java.util.ArrayList)

Example 19 with SeqType

use of org.eclipse.wst.xml.xpath2.processor.internal.SeqType in project webtools.sourceediting by eclipse.

the class FnNamespaceUri method expected_args.

/**
 * Obtain a list of expected arguments.
 *
 * @return Result of operation.
 */
public static synchronized Collection expected_args() {
    if (_expected_args == null) {
        _expected_args = new ArrayList();
        SeqType arg = new SeqType(SeqType.OCC_QMARK);
        _expected_args.add(arg);
    }
    return _expected_args;
}
Also used : SeqType(org.eclipse.wst.xml.xpath2.processor.internal.SeqType) ArrayList(java.util.ArrayList)

Example 20 with SeqType

use of org.eclipse.wst.xml.xpath2.processor.internal.SeqType in project webtools.sourceediting by eclipse.

the class FnNormalizeSpace method expected_args.

/**
 * Calculate the expected arguments.
 *
 * @return The expected arguments.
 */
public static synchronized Collection expected_args() {
    if (_expected_args == null) {
        _expected_args = new ArrayList();
        _expected_args.add(new SeqType(new XSString(), SeqType.OCC_QMARK));
    }
    return _expected_args;
}
Also used : SeqType(org.eclipse.wst.xml.xpath2.processor.internal.SeqType) ArrayList(java.util.ArrayList) XSString(org.eclipse.wst.xml.xpath2.processor.internal.types.XSString)

Aggregations

SeqType (org.eclipse.wst.xml.xpath2.processor.internal.SeqType)75 ArrayList (java.util.ArrayList)74 XSString (org.eclipse.wst.xml.xpath2.processor.internal.types.XSString)30 XSDateTime (org.eclipse.wst.xml.xpath2.processor.internal.types.XSDateTime)8 XSDate (org.eclipse.wst.xml.xpath2.processor.internal.types.XSDate)6 XSDuration (org.eclipse.wst.xml.xpath2.processor.internal.types.XSDuration)6 XSTime (org.eclipse.wst.xml.xpath2.processor.internal.types.XSTime)6 QName (org.eclipse.wst.xml.xpath2.processor.internal.types.QName)5 XSDayTimeDuration (org.eclipse.wst.xml.xpath2.processor.internal.types.XSDayTimeDuration)3 Collection (java.util.Collection)2 Iterator (java.util.Iterator)2 ResultSequence (org.eclipse.wst.xml.xpath2.processor.ResultSequence)2 AnyAtomicType (org.eclipse.wst.xml.xpath2.processor.internal.types.AnyAtomicType)2 AnyType (org.eclipse.wst.xml.xpath2.processor.internal.types.AnyType)2 ElementType (org.eclipse.wst.xml.xpath2.processor.internal.types.ElementType)2 XSDouble (org.eclipse.wst.xml.xpath2.processor.internal.types.XSDouble)2 XSInteger (org.eclipse.wst.xml.xpath2.processor.internal.types.XSInteger)2 ResultBuffer (org.eclipse.wst.xml.xpath2.api.ResultBuffer)1 ResultSequence (org.eclipse.wst.xml.xpath2.api.ResultSequence)1 SequenceType (org.eclipse.wst.xml.xpath2.processor.internal.ast.SequenceType)1