< prev index next >

src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/OutlineableChunkEnd.java

Print this page
rev 2127 : 8162572: Update License Header for all JAXP sources
Reviewed-by: lancea
   1 /*
   2  * reserved comment block
   3  * DO NOT REMOVE OR ALTER!
   4  */
   5 /*
   6  * Copyright 2001-2004 The Apache Software Foundation.
   7  *
   8  * Licensed under the Apache License, Version 2.0 (the "License");
   9  * you may not use this file except in compliance with the License.
  10  * You may obtain a copy of the License at

  11  *
  12  *     http://www.apache.org/licenses/LICENSE-2.0
  13  *
  14  * Unless required by applicable law or agreed to in writing, software
  15  * distributed under the License is distributed on an "AS IS" BASIS,
  16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  17  * See the License for the specific language governing permissions and
  18  * limitations under the License.
  19  */
  20 
  21 /*
  22  * $Id: OutlineableChunkEnd.java,v 1.10 2010-11-01 04:34:19 joehw Exp $
  23  */
  24 package com.sun.org.apache.xalan.internal.xsltc.compiler.util;
  25 import com.sun.org.apache.bcel.internal.generic.Instruction;
  26 /**
  27  * <p>Marks the end of a region of byte code that can be copied into a new
  28  * method.  See the {@link OutlineableChunkStart} pseudo-instruction for
  29  * details.</p>
  30  */
  31 class OutlineableChunkEnd extends MarkerInstruction {
  32     /**
  33      * A constant instance of {@link OutlineableChunkEnd}.  As it has no fields,
  34      * there should be no need to create an instance of this class.
  35      */
  36     public static final Instruction OUTLINEABLECHUNKEND =
  37                                                 new OutlineableChunkEnd();
  38 
  39     /**
  40      * Private default constructor.  As it has no fields,
  41      * there should be no need to create an instance of this class.  See
  42      * {@link OutlineableChunkEnd#OUTLINEABLECHUNKEND}.
  43      */


   1 /*
   2  * reserved comment block
   3  * DO NOT REMOVE OR ALTER!
   4  */
   5 /*
   6  * Licensed to the Apache Software Foundation (ASF) under one or more
   7  * contributor license agreements.  See the NOTICE file distributed with
   8  * this work for additional information regarding copyright ownership.
   9  * The ASF licenses this file to You under the Apache License, Version 2.0
  10  * (the "License"); you may not use this file except in compliance with
  11  * the License.  You may obtain a copy of the License at
  12  *
  13  *      http://www.apache.org/licenses/LICENSE-2.0
  14  *
  15  * Unless required by applicable law or agreed to in writing, software
  16  * distributed under the License is distributed on an "AS IS" BASIS,
  17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  18  * See the License for the specific language governing permissions and
  19  * limitations under the License.
  20  */
  21 
  22 


  23 package com.sun.org.apache.xalan.internal.xsltc.compiler.util;
  24 import com.sun.org.apache.bcel.internal.generic.Instruction;
  25 /**
  26  * <p>Marks the end of a region of byte code that can be copied into a new
  27  * method.  See the {@link OutlineableChunkStart} pseudo-instruction for
  28  * details.</p>
  29  */
  30 class OutlineableChunkEnd extends MarkerInstruction {
  31     /**
  32      * A constant instance of {@link OutlineableChunkEnd}.  As it has no fields,
  33      * there should be no need to create an instance of this class.
  34      */
  35     public static final Instruction OUTLINEABLECHUNKEND =
  36                                                 new OutlineableChunkEnd();
  37 
  38     /**
  39      * Private default constructor.  As it has no fields,
  40      * there should be no need to create an instance of this class.  See
  41      * {@link OutlineableChunkEnd#OUTLINEABLECHUNKEND}.
  42      */


< prev index next >