8193568: @LastModified tag in license header
Reviewed-by: rriggs
This commit is contained in:
parent
7302c9c8c5
commit
388f422efd
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -24,6 +23,7 @@ package com.sun.org.apache.bcel.internal;
|
|||||||
/**
|
/**
|
||||||
* Exception constants.
|
* Exception constants.
|
||||||
* @since 6.0 (intended to replace the InstructionConstant interface)
|
* @since 6.0 (intended to replace the InstructionConstant interface)
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public final class ExceptionConst {
|
public final class ExceptionConst {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -44,6 +43,7 @@ import com.sun.org.apache.bcel.internal.util.ByteSequence;
|
|||||||
* Utility functions that do not really belong to any class in particular.
|
* Utility functions that do not really belong to any class in particular.
|
||||||
*
|
*
|
||||||
* @version $Id: Utility.java 1751107 2016-07-03 02:41:18Z dbrosius $
|
* @version $Id: Utility.java 1751107 2016-07-03 02:41:18Z dbrosius $
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
// @since 6.0 methods are no longer final
|
// @since 6.0 methods are no longer final
|
||||||
public abstract class Utility {
|
public abstract class Utility {
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -28,6 +27,7 @@ import com.sun.org.apache.bcel.internal.ExceptionConst;
|
|||||||
* <PRE>Stack: ..., arrayref -> ..., length</PRE>
|
* <PRE>Stack: ..., arrayref -> ..., length</PRE>
|
||||||
*
|
*
|
||||||
* @version $Id: ARRAYLENGTH.java 1747278 2016-06-07 17:28:43Z britter $
|
* @version $Id: ARRAYLENGTH.java 1747278 2016-06-07 17:28:43Z britter $
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public class ARRAYLENGTH extends Instruction
|
public class ARRAYLENGTH extends Instruction
|
||||||
implements ExceptionThrower, StackProducer, StackConsumer /* since 6.0 */ {
|
implements ExceptionThrower, StackProducer, StackConsumer /* since 6.0 */ {
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -28,6 +27,7 @@ import com.sun.org.apache.bcel.internal.ExceptionConst;
|
|||||||
* <PRE>Stack: ..., objectref -> objectref</PRE>
|
* <PRE>Stack: ..., objectref -> objectref</PRE>
|
||||||
*
|
*
|
||||||
* @version $Id: ATHROW.java 1747278 2016-06-07 17:28:43Z britter $
|
* @version $Id: ATHROW.java 1747278 2016-06-07 17:28:43Z britter $
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public class ATHROW extends Instruction implements UnconditionalBranch, ExceptionThrower {
|
public class ATHROW extends Instruction implements UnconditionalBranch, ExceptionThrower {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -28,6 +27,7 @@ import com.sun.org.apache.bcel.internal.ExceptionConst;
|
|||||||
* <PRE>Stack: ..., value1, value2 -> result</PRE>
|
* <PRE>Stack: ..., value1, value2 -> result</PRE>
|
||||||
*
|
*
|
||||||
* @version $Id: IDIV.java 1747278 2016-06-07 17:28:43Z britter $
|
* @version $Id: IDIV.java 1747278 2016-06-07 17:28:43Z britter $
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public class IDIV extends ArithmeticInstruction implements ExceptionThrower {
|
public class IDIV extends ArithmeticInstruction implements ExceptionThrower {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -28,6 +27,7 @@ import com.sun.org.apache.bcel.internal.ExceptionConst;
|
|||||||
* <PRE>Stack: ..., value1, value2 -> result</PRE>
|
* <PRE>Stack: ..., value1, value2 -> result</PRE>
|
||||||
*
|
*
|
||||||
* @version $Id: IREM.java 1747278 2016-06-07 17:28:43Z britter $
|
* @version $Id: IREM.java 1747278 2016-06-07 17:28:43Z britter $
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public class IREM extends ArithmeticInstruction implements ExceptionThrower {
|
public class IREM extends ArithmeticInstruction implements ExceptionThrower {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -29,6 +28,7 @@ import com.sun.org.apache.bcel.internal.ExceptionConst;
|
|||||||
* ..., result.word1, result.word2
|
* ..., result.word1, result.word2
|
||||||
*
|
*
|
||||||
* @version $Id: LDIV.java 1747278 2016-06-07 17:28:43Z britter $
|
* @version $Id: LDIV.java 1747278 2016-06-07 17:28:43Z britter $
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public class LDIV extends ArithmeticInstruction implements ExceptionThrower {
|
public class LDIV extends ArithmeticInstruction implements ExceptionThrower {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -28,6 +27,7 @@ import com.sun.org.apache.bcel.internal.ExceptionConst;
|
|||||||
* <PRE>Stack: ..., value1, value2 -> result</PRE>
|
* <PRE>Stack: ..., value1, value2 -> result</PRE>
|
||||||
*
|
*
|
||||||
* @version $Id: LREM.java 1747278 2016-06-07 17:28:43Z britter $
|
* @version $Id: LREM.java 1747278 2016-06-07 17:28:43Z britter $
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public class LREM extends ArithmeticInstruction implements ExceptionThrower {
|
public class LREM extends ArithmeticInstruction implements ExceptionThrower {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -28,6 +27,7 @@ import com.sun.org.apache.bcel.internal.ExceptionConst;
|
|||||||
* <PRE>Stack: ..., objectref -> ...</PRE>
|
* <PRE>Stack: ..., objectref -> ...</PRE>
|
||||||
*
|
*
|
||||||
* @version $Id: MONITORENTER.java 1747278 2016-06-07 17:28:43Z britter $
|
* @version $Id: MONITORENTER.java 1747278 2016-06-07 17:28:43Z britter $
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public class MONITORENTER extends Instruction implements ExceptionThrower, StackConsumer {
|
public class MONITORENTER extends Instruction implements ExceptionThrower, StackConsumer {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -28,6 +27,7 @@ import com.sun.org.apache.bcel.internal.ExceptionConst;
|
|||||||
* <PRE>Stack: ..., objectref -> ...</PRE>
|
* <PRE>Stack: ..., objectref -> ...</PRE>
|
||||||
*
|
*
|
||||||
* @version $Id: MONITOREXIT.java 1747278 2016-06-07 17:28:43Z britter $
|
* @version $Id: MONITOREXIT.java 1747278 2016-06-07 17:28:43Z britter $
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public class MONITOREXIT extends Instruction implements ExceptionThrower, StackConsumer {
|
public class MONITOREXIT extends Instruction implements ExceptionThrower, StackConsumer {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2013, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2013, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -59,6 +58,7 @@ import java.util.Stack;
|
|||||||
* @version $Id: MethodGen.java 1749603 2016-06-21 20:50:19Z ggregory $
|
* @version $Id: MethodGen.java 1749603 2016-06-21 20:50:19Z ggregory $
|
||||||
* @see InstructionList
|
* @see InstructionList
|
||||||
* @see Method
|
* @see Method
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public class MethodGen extends FieldGenOrMethodGen {
|
public class MethodGen extends FieldGenOrMethodGen {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -32,6 +31,7 @@ import java.io.IOException;
|
|||||||
* type must be one of T_INT, T_SHORT, ...
|
* type must be one of T_INT, T_SHORT, ...
|
||||||
*
|
*
|
||||||
* @version $Id: NEWARRAY.java 1747278 2016-06-07 17:28:43Z britter $
|
* @version $Id: NEWARRAY.java 1747278 2016-06-07 17:28:43Z britter $
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public class NEWARRAY extends Instruction implements AllocationInstruction, ExceptionThrower,
|
public class NEWARRAY extends Instruction implements AllocationInstruction, ExceptionThrower,
|
||||||
StackProducer {
|
StackProducer {
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -28,6 +27,7 @@ import com.sun.org.apache.bcel.internal.ExceptionConst;
|
|||||||
* Super class for the xRETURN family of instructions.
|
* Super class for the xRETURN family of instructions.
|
||||||
*
|
*
|
||||||
* @version $Id: ReturnInstruction.java 1747278 2016-06-07 17:28:43Z britter $
|
* @version $Id: ReturnInstruction.java 1747278 2016-06-07 17:28:43Z britter $
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public abstract class ReturnInstruction extends Instruction implements ExceptionThrower,
|
public abstract class ReturnInstruction extends Instruction implements ExceptionThrower,
|
||||||
TypedInstruction, StackConsumer {
|
TypedInstruction, StackConsumer {
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -66,6 +65,7 @@ import com.sun.org.apache.bcel.internal.generic.Type;
|
|||||||
*
|
*
|
||||||
* @see BCELifier
|
* @see BCELifier
|
||||||
* @version $Id: BCELFactory.java 1749603 2016-06-21 20:50:19Z ggregory $
|
* @version $Id: BCELFactory.java 1749603 2016-06-21 20:50:19Z ggregory $
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
class BCELFactory extends EmptyVisitor {
|
class BCELFactory extends EmptyVisitor {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -66,6 +65,7 @@ import java.util.regex.Pattern;
|
|||||||
* @version $Id: InstructionFinder.java 1749603 2016-06-21 20:50:19Z ggregory $
|
* @version $Id: InstructionFinder.java 1749603 2016-06-21 20:50:19Z ggregory $
|
||||||
* @see com.sun.org.apache.bcel.internal.generic.Instruction
|
* @see com.sun.org.apache.bcel.internal.generic.Instruction
|
||||||
* @see InstructionList
|
* @see InstructionList
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public class InstructionFinder {
|
public class InstructionFinder {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Nov 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -45,6 +44,7 @@ import com.sun.org.apache.xpath.internal.objects.XObject;
|
|||||||
*
|
*
|
||||||
* @see <a href="http://www.exslt.org/">EXSLT</a>
|
* @see <a href="http://www.exslt.org/">EXSLT</a>
|
||||||
* @xsl.usage general
|
* @xsl.usage general
|
||||||
|
* @LastModified: Nov 2017
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public class ExsltDatetime
|
public class ExsltDatetime
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Sep 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -30,6 +29,7 @@ import jdk.xml.internal.SecuritySupport;
|
|||||||
* be called XalanMessages, or some such.
|
* be called XalanMessages, or some such.
|
||||||
*
|
*
|
||||||
* @xsl.usage internal
|
* @xsl.usage internal
|
||||||
|
* @LastModified: Sep 2017
|
||||||
*/
|
*/
|
||||||
public class XSLMessages extends XPATHMessages {
|
public class XSLMessages extends XPATHMessages {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -23,6 +22,8 @@ package com.sun.org.apache.xalan.internal.utils;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* A configuration error. This was an internal class in ObjectFactory previously
|
* A configuration error. This was an internal class in ObjectFactory previously
|
||||||
|
*
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public final class ConfigurationError
|
public final class ConfigurationError
|
||||||
extends Error {
|
extends Error {
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -33,6 +32,7 @@ import jdk.xml.internal.SecuritySupport;
|
|||||||
* class and modified to be used as a general utility for creating objects
|
* class and modified to be used as a general utility for creating objects
|
||||||
* dynamically.
|
* dynamically.
|
||||||
*
|
*
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public class ObjectFactory {
|
public class ObjectFactory {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -27,6 +26,7 @@ import com.sun.org.apache.xml.internal.serializer.SerializationHandler;
|
|||||||
/**
|
/**
|
||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public interface Translet {
|
public interface Translet {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -42,6 +41,7 @@ import java.util.List;
|
|||||||
/**
|
/**
|
||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class ApplyTemplates extends Instruction {
|
final class ApplyTemplates extends Instruction {
|
||||||
private Expression _select;
|
private Expression _select;
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Nov 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -43,6 +42,7 @@ import java.util.List;
|
|||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
|
* @LastModified: Nov 2017
|
||||||
*/
|
*/
|
||||||
final class AttributeSet extends TopLevelElement {
|
final class AttributeSet extends TopLevelElement {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -43,6 +42,7 @@ import java.util.StringTokenizer;
|
|||||||
/**
|
/**
|
||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class AttributeValueTemplate extends AttributeValue {
|
final class AttributeValueTemplate extends AttributeValue {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Nov 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -32,6 +31,7 @@ import com.sun.org.apache.xalan.internal.xsltc.compiler.util.TypeCheckError;
|
|||||||
/**
|
/**
|
||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Nov 2017
|
||||||
*/
|
*/
|
||||||
final class BinOpExpr extends Expression {
|
final class BinOpExpr extends Expression {
|
||||||
public static final int PLUS = 0;
|
public static final int PLUS = 0;
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -30,6 +29,7 @@ import java.util.List;
|
|||||||
/**
|
/**
|
||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class BooleanCall extends FunctionCall {
|
final class BooleanCall extends FunctionCall {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -37,6 +36,7 @@ import java.util.List;
|
|||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
* @author Erwin Bolwidt <ejb@klomp.org>
|
* @author Erwin Bolwidt <ejb@klomp.org>
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class CallTemplate extends Instruction {
|
final class CallTemplate extends Instruction {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -34,6 +33,7 @@ import java.util.List;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class CastCall extends FunctionCall {
|
final class CastCall extends FunctionCall {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -31,6 +30,7 @@ import java.util.List;
|
|||||||
/**
|
/**
|
||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class CeilingCall extends FunctionCall {
|
final class CeilingCall extends FunctionCall {
|
||||||
public CeilingCall(QName fname, List<Expression> arguments) {
|
public CeilingCall(QName fname, List<Expression> arguments) {
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -45,6 +44,7 @@ import java.util.List;
|
|||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class Choose extends Instruction {
|
final class Choose extends Instruction {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -37,6 +36,7 @@ import java.util.List;
|
|||||||
/**
|
/**
|
||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class ConcatCall extends FunctionCall {
|
final class ConcatCall extends FunctionCall {
|
||||||
public ConcatCall(QName fname, List<Expression> arguments) {
|
public ConcatCall(QName fname, List<Expression> arguments) {
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -36,6 +35,7 @@ import java.util.List;
|
|||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class ContainsCall extends FunctionCall {
|
final class ContainsCall extends FunctionCall {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -36,6 +35,7 @@ import java.util.List;
|
|||||||
/**
|
/**
|
||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class DocumentCall extends FunctionCall {
|
final class DocumentCall extends FunctionCall {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -33,6 +32,7 @@ import java.util.List;
|
|||||||
/**
|
/**
|
||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class ElementAvailableCall extends FunctionCall {
|
final class ElementAvailableCall extends FunctionCall {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -42,6 +41,7 @@ import java.util.List;
|
|||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
* @author Erwin Bolwidt <ejb@klomp.org>
|
* @author Erwin Bolwidt <ejb@klomp.org>
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
abstract class Expression extends SyntaxTreeNode {
|
abstract class Expression extends SyntaxTreeNode {
|
||||||
/**
|
/**
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Nov 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -43,6 +42,7 @@ import java.util.List;
|
|||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
|
* @LastModified: Nov 2017
|
||||||
*/
|
*/
|
||||||
class FilterExpr extends Expression {
|
class FilterExpr extends Expression {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -29,6 +28,7 @@ import java.util.List;
|
|||||||
/**
|
/**
|
||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class FloorCall extends FunctionCall {
|
final class FloorCall extends FunctionCall {
|
||||||
public FloorCall(QName fname, List<Expression> arguments) {
|
public FloorCall(QName fname, List<Expression> arguments) {
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -31,6 +30,7 @@ import java.util.List;
|
|||||||
/**
|
/**
|
||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public final class FlowList {
|
public final class FlowList {
|
||||||
private List<InstructionHandle> _elements;
|
private List<InstructionHandle> _elements;
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -48,6 +47,7 @@ import java.util.List;
|
|||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class ForEach extends Instruction {
|
final class ForEach extends Instruction {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -38,6 +37,7 @@ import java.util.List;
|
|||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class FormatNumberCall extends FunctionCall {
|
final class FormatNumberCall extends FunctionCall {
|
||||||
private Expression _value;
|
private Expression _value;
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Nov 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -37,6 +36,7 @@ import java.util.List;
|
|||||||
/**
|
/**
|
||||||
* @author G. Todd Miller
|
* @author G. Todd Miller
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Nov 2017
|
||||||
*/
|
*/
|
||||||
final class FunctionAvailableCall extends FunctionCall {
|
final class FunctionAvailableCall extends FunctionCall {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Nov 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -63,6 +62,7 @@ import jdk.xml.internal.JdkXmlFeatures;
|
|||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
* @author Erwin Bolwidt <ejb@klomp.org>
|
* @author Erwin Bolwidt <ejb@klomp.org>
|
||||||
* @author Todd Miller
|
* @author Todd Miller
|
||||||
|
* @LastModified: Nov 2017
|
||||||
*/
|
*/
|
||||||
class FunctionCall extends Expression {
|
class FunctionCall extends Expression {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -31,6 +30,7 @@ import java.util.List;
|
|||||||
/**
|
/**
|
||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class GenerateIdCall extends FunctionCall {
|
final class GenerateIdCall extends FunctionCall {
|
||||||
public GenerateIdCall(QName fname, List<Expression> arguments) {
|
public GenerateIdCall(QName fname, List<Expression> arguments) {
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2007, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2007, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Sep 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -42,6 +41,7 @@ import org.xml.sax.XMLReader;
|
|||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
* @author Erwin Bolwidt <ejb@klomp.org>
|
* @author Erwin Bolwidt <ejb@klomp.org>
|
||||||
* @author Gunnlaugur Briem <gthb@dimon.is>
|
* @author Gunnlaugur Briem <gthb@dimon.is>
|
||||||
|
* @LastModified: Sep 2017
|
||||||
*/
|
*/
|
||||||
final class Import extends TopLevelElement {
|
final class Import extends TopLevelElement {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2007, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2007, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Sep 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -42,6 +41,7 @@ import org.xml.sax.XMLReader;
|
|||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
* @author Erwin Bolwidt <ejb@klomp.org>
|
* @author Erwin Bolwidt <ejb@klomp.org>
|
||||||
* @author Gunnlaugur Briem <gthb@dimon.is>
|
* @author Gunnlaugur Briem <gthb@dimon.is>
|
||||||
|
* @LastModified: Sep 2017
|
||||||
*/
|
*/
|
||||||
final class Include extends TopLevelElement {
|
final class Include extends TopLevelElement {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -52,6 +51,7 @@ import com.sun.org.apache.xml.internal.utils.XML11Char;
|
|||||||
/**
|
/**
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class Key extends TopLevelElement {
|
final class Key extends TopLevelElement {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -35,6 +34,7 @@ import java.util.List;
|
|||||||
/**
|
/**
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class KeyCall extends FunctionCall {
|
final class KeyCall extends FunctionCall {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -35,6 +34,7 @@ import java.util.List;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class LangCall extends FunctionCall {
|
final class LangCall extends FunctionCall {
|
||||||
private Expression _lang;
|
private Expression _lang;
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -43,6 +42,7 @@ import java.util.Set;
|
|||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class LiteralElement extends Instruction {
|
final class LiteralElement extends Instruction {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -31,6 +30,7 @@ import java.util.List;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class LocalNameCall extends NameBase {
|
final class LocalNameCall extends NameBase {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Nov 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -34,6 +33,7 @@ import com.sun.org.apache.xalan.internal.xsltc.compiler.util.TypeCheckError;
|
|||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
|
* @LastModified: Nov 2017
|
||||||
*/
|
*/
|
||||||
final class LogicalExpr extends Expression {
|
final class LogicalExpr extends Expression {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Nov 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -37,6 +36,7 @@ import com.sun.org.apache.xalan.internal.xsltc.compiler.util.TypeCheckError;
|
|||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
|
* @LastModified: Nov 2017
|
||||||
*/
|
*/
|
||||||
final class Message extends Instruction {
|
final class Message extends Instruction {
|
||||||
private boolean _terminate = false;
|
private boolean _terminate = false;
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Nov 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -63,6 +62,7 @@ import java.util.Set;
|
|||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
* @author Erwin Bolwidt <ejb@klomp.org>
|
* @author Erwin Bolwidt <ejb@klomp.org>
|
||||||
* @author G. Todd Miller
|
* @author G. Todd Miller
|
||||||
|
* @LastModified: Nov 2017
|
||||||
*/
|
*/
|
||||||
final class Mode implements Constants {
|
final class Mode implements Constants {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -33,6 +32,7 @@ import java.util.List;
|
|||||||
/**
|
/**
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
* @author Erwin Bolwidt <ejb@klomp.org>
|
* @author Erwin Bolwidt <ejb@klomp.org>
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
class NameBase extends FunctionCall {
|
class NameBase extends FunctionCall {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -32,6 +31,7 @@ import java.util.List;
|
|||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class NameCall extends NameBase {
|
final class NameCall extends NameBase {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -30,6 +29,7 @@ import java.util.List;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class NamespaceUriCall extends NameBase {
|
final class NamespaceUriCall extends NameBase {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -31,6 +30,7 @@ import java.util.List;
|
|||||||
/**
|
/**
|
||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class NotCall extends FunctionCall {
|
final class NotCall extends FunctionCall {
|
||||||
public NotCall(QName fname, List<Expression> arguments) {
|
public NotCall(QName fname, List<Expression> arguments) {
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Nov 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -54,6 +53,7 @@ import java.util.List;
|
|||||||
/**
|
/**
|
||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Nov 2017
|
||||||
*/
|
*/
|
||||||
final class Number extends Instruction implements Closure {
|
final class Number extends Instruction implements Closure {
|
||||||
private static final int LEVEL_SINGLE = 0;
|
private static final int LEVEL_SINGLE = 0;
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -31,6 +30,7 @@ import java.util.List;
|
|||||||
/**
|
/**
|
||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class NumberCall extends FunctionCall {
|
final class NumberCall extends FunctionCall {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Nov 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -67,6 +66,7 @@ import org.xml.sax.helpers.AttributesImpl;
|
|||||||
* @author G. Todd Miller
|
* @author G. Todd Miller
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
* @author Erwin Bolwidt <ejb@klomp.org>
|
* @author Erwin Bolwidt <ejb@klomp.org>
|
||||||
|
* @LastModified: Nov 2017
|
||||||
*/
|
*/
|
||||||
public class Parser implements Constants, ContentHandler {
|
public class Parser implements Constants, ContentHandler {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -52,6 +51,7 @@ import java.util.List;
|
|||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class Predicate extends Expression implements Closure {
|
final class Predicate extends Expression implements Closure {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -40,6 +39,7 @@ import com.sun.org.apache.xml.internal.dtm.DTM;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class ProcessingInstructionPattern extends StepPattern {
|
final class ProcessingInstructionPattern extends StepPattern {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -44,6 +43,7 @@ import com.sun.org.apache.xalan.internal.xsltc.runtime.Operators;
|
|||||||
/**
|
/**
|
||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class RelationalExpr extends Expression {
|
final class RelationalExpr extends Expression {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -31,6 +30,7 @@ import java.util.List;
|
|||||||
/**
|
/**
|
||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class RoundCall extends FunctionCall {
|
final class RoundCall extends FunctionCall {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Nov 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -59,6 +58,7 @@ import java.util.List;
|
|||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
|
* @LastModified: Nov 2017
|
||||||
*/
|
*/
|
||||||
final class Sort extends Instruction implements Closure {
|
final class Sort extends Instruction implements Closure {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -35,6 +34,7 @@ import java.util.List;
|
|||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class StartsWithCall extends FunctionCall {
|
final class StartsWithCall extends FunctionCall {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -48,6 +47,7 @@ import java.util.List;
|
|||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class Step extends RelativeLocationPath {
|
final class Step extends RelativeLocationPath {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -58,6 +57,7 @@ import java.util.List;
|
|||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
* @author Erwin Bolwidt <ejb@klomp.org>
|
* @author Erwin Bolwidt <ejb@klomp.org>
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
class StepPattern extends RelativePathPattern {
|
class StepPattern extends RelativePathPattern {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -32,6 +31,7 @@ import java.util.List;
|
|||||||
/**
|
/**
|
||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class StringCall extends FunctionCall {
|
final class StringCall extends FunctionCall {
|
||||||
public StringCall(QName fname, List<Expression> arguments) {
|
public StringCall(QName fname, List<Expression> arguments) {
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -32,6 +31,7 @@ import java.util.List;
|
|||||||
/**
|
/**
|
||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class StringLengthCall extends FunctionCall {
|
final class StringLengthCall extends FunctionCall {
|
||||||
public StringLengthCall(QName fname, List<Expression> arguments) {
|
public StringLengthCall(QName fname, List<Expression> arguments) {
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2007, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2007, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -66,6 +65,7 @@ import java.util.StringTokenizer;
|
|||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public final class Stylesheet extends SyntaxTreeNode {
|
public final class Stylesheet extends SyntaxTreeNode {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -36,6 +35,7 @@ import java.util.StringTokenizer;
|
|||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class SymbolTable {
|
final class SymbolTable {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2006, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2006, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Nov 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -58,6 +57,7 @@ import org.xml.sax.helpers.AttributesImpl;
|
|||||||
* @author Morten Jorensen
|
* @author Morten Jorensen
|
||||||
* @author Erwin Bolwidt <ejb@klomp.org>
|
* @author Erwin Bolwidt <ejb@klomp.org>
|
||||||
* @author John Howard <JohnH@schemasoft.com>
|
* @author John Howard <JohnH@schemasoft.com>
|
||||||
|
* @LastModified: Nov 2017
|
||||||
*/
|
*/
|
||||||
public abstract class SyntaxTreeNode implements Constants {
|
public abstract class SyntaxTreeNode implements Constants {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -42,6 +41,7 @@ import java.util.List;
|
|||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
* @author Erwin Bolwidt <ejb@klomp.org>
|
* @author Erwin Bolwidt <ejb@klomp.org>
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public final class Template extends TopLevelElement {
|
public final class Template extends TopLevelElement {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Nov 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -48,6 +47,7 @@ import java.util.Map;
|
|||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
* @author Erwin Bolwidt <ejb@klomp.org>
|
* @author Erwin Bolwidt <ejb@klomp.org>
|
||||||
* @author Morten Jorgensen <morten.jorgensen@sun.com>
|
* @author Morten Jorgensen <morten.jorgensen@sun.com>
|
||||||
|
* @LastModified: Nov 2017
|
||||||
*/
|
*/
|
||||||
final class TestSeq {
|
final class TestSeq {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -31,6 +30,9 @@ import com.sun.org.apache.xalan.internal.xsltc.compiler.util.Util;
|
|||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @LastModified: Oct 2017
|
||||||
|
*/
|
||||||
class TopLevelElement extends SyntaxTreeNode {
|
class TopLevelElement extends SyntaxTreeNode {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -31,6 +30,7 @@ import com.sun.org.apache.xalan.internal.xsltc.compiler.util.TypeCheckError;
|
|||||||
/**
|
/**
|
||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class UnaryOpExpr extends Expression {
|
final class UnaryOpExpr extends Expression {
|
||||||
private Expression _left;
|
private Expression _left;
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Nov 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -39,6 +38,7 @@ import java.util.List;
|
|||||||
/**
|
/**
|
||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Nov 2017
|
||||||
*/
|
*/
|
||||||
final class UnionPathExpr extends Expression {
|
final class UnionPathExpr extends Expression {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -35,6 +34,7 @@ import java.util.List;
|
|||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class UnparsedEntityUriCall extends FunctionCall {
|
final class UnparsedEntityUriCall extends FunctionCall {
|
||||||
private Expression _entity;
|
private Expression _entity;
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -39,6 +38,7 @@ import java.util.List;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class UnsupportedElement extends SyntaxTreeNode {
|
final class UnsupportedElement extends SyntaxTreeNode {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -37,6 +36,7 @@ import java.util.StringTokenizer;
|
|||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class UseAttributeSets extends Instruction {
|
final class UseAttributeSets extends Instruction {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -48,6 +47,7 @@ import java.util.List;
|
|||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
* @author Erwin Bolwidt <ejb@klomp.org>
|
* @author Erwin Bolwidt <ejb@klomp.org>
|
||||||
* @author John Howard <JohnH@schemasoft.com>
|
* @author John Howard <JohnH@schemasoft.com>
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
class VariableBase extends TopLevelElement {
|
class VariableBase extends TopLevelElement {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -43,6 +42,7 @@ import java.util.StringTokenizer;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class Whitespace extends TopLevelElement {
|
final class Whitespace extends TopLevelElement {
|
||||||
// Three possible actions for the translet:
|
// Three possible actions for the translet:
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -28,6 +27,9 @@ package com.sun.org.apache.xalan.internal.xsltc.compiler;
|
|||||||
import com.sun.java_cup.internal.runtime.Symbol;
|
import com.sun.java_cup.internal.runtime.Symbol;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @LastModified: Oct 2017
|
||||||
|
*/
|
||||||
class XPathLexer implements com.sun.java_cup.internal.runtime.Scanner {
|
class XPathLexer implements com.sun.java_cup.internal.runtime.Scanner {
|
||||||
private final int YY_BUFFER_SIZE = 512;
|
private final int YY_BUFFER_SIZE = 512;
|
||||||
private final int YY_F = -1;
|
private final int YY_F = -1;
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2012, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2012, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -59,6 +58,7 @@ import org.xml.sax.XMLReader;
|
|||||||
* @author G. Todd Miller
|
* @author G. Todd Miller
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
* @author John Howard (johnh@schemasoft.com)
|
* @author John Howard (johnh@schemasoft.com)
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public final class XSLTC {
|
public final class XSLTC {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -50,6 +49,7 @@ import java.util.List;
|
|||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
* @author Erwin Bolwidt <ejb@klomp.org>
|
* @author Erwin Bolwidt <ejb@klomp.org>
|
||||||
* @author Gunnlaugur Briem <gthb@dimon.is>
|
* @author Gunnlaugur Briem <gthb@dimon.is>
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
final class XslAttribute extends Instruction {
|
final class XslAttribute extends Instruction {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -48,6 +47,7 @@ import com.sun.org.apache.xalan.internal.xsltc.compiler.Constants;
|
|||||||
/**
|
/**
|
||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public final class BooleanType extends Type {
|
public final class BooleanType extends Type {
|
||||||
protected BooleanType() {}
|
protected BooleanType() {}
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2013, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2013, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Sep 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -34,6 +33,7 @@ import jdk.xml.internal.SecuritySupport;
|
|||||||
* @author G. Todd Miller
|
* @author G. Todd Miller
|
||||||
* @author Erwin Bolwidt <ejb@klomp.org>
|
* @author Erwin Bolwidt <ejb@klomp.org>
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
|
* @LastModified: Sep 2017
|
||||||
*/
|
*/
|
||||||
public final class ErrorMsg {
|
public final class ErrorMsg {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -50,6 +49,7 @@ import com.sun.org.apache.xalan.internal.xsltc.compiler.FlowList;
|
|||||||
/**
|
/**
|
||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public final class IntType extends NumberType {
|
public final class IntType extends NumberType {
|
||||||
protected IntType() {}
|
protected IntType() {}
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -24,6 +23,8 @@ package com.sun.org.apache.xalan.internal.xsltc.compiler.util;
|
|||||||
/**
|
/**
|
||||||
* Marks a class of errors in which XSLTC has reached some incorrect internal
|
* Marks a class of errors in which XSLTC has reached some incorrect internal
|
||||||
* state from which it cannot recover.
|
* state from which it cannot recover.
|
||||||
|
*
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public class InternalError extends Error {
|
public class InternalError extends Error {
|
||||||
private static final long serialVersionUID = -6690855975016554786L;
|
private static final long serialVersionUID = -6690855975016554786L;
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Nov 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -76,6 +75,7 @@ import java.util.Stack;
|
|||||||
/**
|
/**
|
||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Nov 2017
|
||||||
*/
|
*/
|
||||||
public class MethodGenerator extends MethodGen
|
public class MethodGenerator extends MethodGen
|
||||||
implements com.sun.org.apache.xalan.internal.xsltc.compiler.Constants {
|
implements com.sun.org.apache.xalan.internal.xsltc.compiler.Constants {
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -27,6 +26,7 @@ import java.util.List;
|
|||||||
/**
|
/**
|
||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public final class MethodType extends Type {
|
public final class MethodType extends Type {
|
||||||
private final Type _resultType;
|
private final Type _resultType;
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -38,6 +37,7 @@ import com.sun.org.apache.xalan.internal.xsltc.compiler.FlowList;
|
|||||||
/**
|
/**
|
||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public final class NodeSetType extends Type {
|
public final class NodeSetType extends Type {
|
||||||
protected NodeSetType() {}
|
protected NodeSetType() {}
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -42,6 +41,7 @@ import com.sun.org.apache.xalan.internal.xsltc.compiler.NodeTest;
|
|||||||
/**
|
/**
|
||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public final class NodeType extends Type {
|
public final class NodeType extends Type {
|
||||||
private final int _type;
|
private final int _type;
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -37,6 +36,7 @@ import com.sun.org.apache.xalan.internal.xsltc.compiler.Constants;
|
|||||||
/**
|
/**
|
||||||
* @author Todd Miller
|
* @author Todd Miller
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public final class ObjectType extends Type {
|
public final class ObjectType extends Type {
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -43,6 +42,7 @@ import com.sun.org.apache.xalan.internal.xsltc.compiler.FlowList;
|
|||||||
/**
|
/**
|
||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public final class RealType extends NumberType {
|
public final class RealType extends NumberType {
|
||||||
protected RealType() {}
|
protected RealType() {}
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -39,6 +38,7 @@ import com.sun.org.apache.xml.internal.dtm.DTM;
|
|||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
* @author Erwin Bolwidt <ejb@klomp.org>
|
* @author Erwin Bolwidt <ejb@klomp.org>
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public final class ReferenceType extends Type {
|
public final class ReferenceType extends Type {
|
||||||
protected ReferenceType() {}
|
protected ReferenceType() {}
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -42,6 +41,7 @@ import com.sun.org.apache.xalan.internal.xsltc.compiler.FlowList;
|
|||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public final class ResultTreeType extends Type {
|
public final class ResultTreeType extends Type {
|
||||||
private final String _methodName;
|
private final String _methodName;
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -26,6 +25,7 @@ import java.util.Stack;
|
|||||||
/**
|
/**
|
||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public final class StringStack extends Stack<String> {
|
public final class StringStack extends Stack<String> {
|
||||||
static final long serialVersionUID = -1506910875640317898L;
|
static final long serialVersionUID = -1506910875640317898L;
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -39,6 +38,7 @@ import com.sun.org.apache.xalan.internal.xsltc.compiler.FlowList;
|
|||||||
/**
|
/**
|
||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public class StringType extends Type {
|
public class StringType extends Type {
|
||||||
protected StringType() {}
|
protected StringType() {}
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
||||||
* @LastModified: Oct 2017
|
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
@ -31,6 +30,7 @@ import com.sun.org.apache.xalan.internal.xsltc.compiler.NodeTest;
|
|||||||
* @author Jacek Ambroziak
|
* @author Jacek Ambroziak
|
||||||
* @author Santiago Pericas-Geertsen
|
* @author Santiago Pericas-Geertsen
|
||||||
* @author Morten Jorgensen
|
* @author Morten Jorgensen
|
||||||
|
* @LastModified: Oct 2017
|
||||||
*/
|
*/
|
||||||
public abstract class Type implements Constants {
|
public abstract class Type implements Constants {
|
||||||
public static final Type Int = new IntType();
|
public static final Type Int = new IntType();
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user