Skip to content

Commit

Permalink
Renamed the updated BCEL package to contain its version (6.2).
Browse files Browse the repository at this point in the history
  • Loading branch information
Admin authored and Admin committed Nov 10, 2018
1 parent 2c1c5e9 commit 7213e70
Show file tree
Hide file tree
Showing 387 changed files with 1,348 additions and 1,351 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*
*/
package org.apache.bcel;
package org.apache.bcel6_2_0;

import java.util.Arrays;
import java.util.Collections;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*
*/
package org.apache.bcel;
package org.apache.bcel6_2_0;

/**
* Constants for the project, mostly defined in the JVM specification.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*
*/
package org.apache.bcel;
package org.apache.bcel6_2_0;

/**
* Exception constants.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*
*/
package org.apache.bcel;
package org.apache.bcel6_2_0;

/**
* Exception constants.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,39 +15,39 @@
* limitations under the License.
*
*/
package org.apache.bcel;
package org.apache.bcel6_2_0;

import java.io.IOException;

import org.apache.bcel.classfile.JavaClass;
import org.apache.bcel.util.ClassPath;
import org.apache.bcel.util.SyntheticRepository;
import org.apache.bcel6_2_0.classfile.JavaClass;
import org.apache.bcel6_2_0.util.ClassPath;
import org.apache.bcel6_2_0.util.SyntheticRepository;

/**
* The repository maintains informations about class interdependencies, e.g.,
* whether a class is a sub-class of another. Delegates actual class loading
* to SyntheticRepository with current class path by default.
*
* @see org.apache.bcel.util.Repository
* @see org.apache.bcel6_2_0.util.Repository
* @see SyntheticRepository
*
* @version $Id: Repository.java 1749603 2016-06-21 20:50:19Z ggregory $
*/
public abstract class Repository {

private static org.apache.bcel.util.Repository repository = SyntheticRepository.getInstance();
private static org.apache.bcel6_2_0.util.Repository repository = SyntheticRepository.getInstance();


/** @return currently used repository instance
*/
public static org.apache.bcel.util.Repository getRepository() {
public static org.apache.bcel6_2_0.util.Repository getRepository() {
return repository;
}


/** Set repository instance to be used for class loading
*/
public static void setRepository( final org.apache.bcel.util.Repository rep ) {
public static void setRepository( final org.apache.bcel6_2_0.util.Repository rep ) {
repository = rep;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
* limitations under the License.
*
*/
package org.apache.bcel.classfile;
package org.apache.bcel6_2_0.classfile;

import org.apache.bcel.Const;
import org.apache.bcel6_2_0.Const;

/**
* Super class for all objects that have modifiers like private, final, ... I.e. classes, fields, and methods.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
* limitations under the License.
*/

package org.apache.bcel.classfile;
package org.apache.bcel6_2_0.classfile;

import java.io.DataInput;
import java.io.DataOutputStream;
import java.io.IOException;

import org.apache.bcel.Const;
import org.apache.bcel6_2_0.Const;

/**
* Represents the default value of a annotation for a method info
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*
*/
package org.apache.bcel.classfile;
package org.apache.bcel6_2_0.classfile;

import java.io.DataOutputStream;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*
*/
package org.apache.bcel.classfile;
package org.apache.bcel6_2_0.classfile;

import java.io.DataInput;
import java.io.DataOutputStream;
Expand All @@ -24,7 +24,7 @@
import java.util.Collections;
import java.util.List;

import org.apache.bcel.Const;
import org.apache.bcel6_2_0.Const;

/**
* represents one annotation in the annotation table
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*
*/
package org.apache.bcel.classfile;
package org.apache.bcel6_2_0.classfile;

import java.io.DataInput;
import java.io.DataOutputStream;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*
*/
package org.apache.bcel.classfile;
package org.apache.bcel6_2_0.classfile;

import java.io.DataOutputStream;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*
*/
package org.apache.bcel.classfile;
package org.apache.bcel6_2_0.classfile;

import java.io.DataInput;
import java.io.DataInputStream;
Expand All @@ -24,7 +24,7 @@
import java.util.HashMap;
import java.util.Map;

import org.apache.bcel.Const;
import org.apache.bcel6_2_0.Const;

/**
* Abstract super class for <em>Attribute</em> objects. Currently the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*
*/
package org.apache.bcel.classfile;
package org.apache.bcel6_2_0.classfile;

/**
* Unknown (non-standard) attributes may be read via user-defined factory
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
* limitations under the License.
*/

package org.apache.bcel.classfile;
package org.apache.bcel6_2_0.classfile;

import java.io.DataInput;
import java.io.DataOutputStream;
import java.io.IOException;
import java.util.Arrays;

import org.apache.bcel.Const;
import org.apache.bcel6_2_0.Const;

/**
* This class represents a bootstrap method attribute, i.e., the bootstrap
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
* limitations under the License.
*/

package org.apache.bcel.classfile;
package org.apache.bcel6_2_0.classfile;

import java.io.DataInput;
import java.io.DataOutputStream;
import java.io.IOException;

import org.apache.bcel.Const;
import org.apache.bcel6_2_0.Const;

/**
* This class represents a BootstrapMethods attribute.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
* limitations under the License.
*
*/
package org.apache.bcel.classfile;
package org.apache.bcel6_2_0.classfile;

import java.io.DataOutputStream;
import java.io.IOException;

import org.apache.bcel.Const;
import org.apache.bcel6_2_0.Const;

/**
* @since 6.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*
*/
package org.apache.bcel.classfile;
package org.apache.bcel6_2_0.classfile;

/**
* Thrown when the BCEL attempts to read a class file and determines
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*
*/
package org.apache.bcel.classfile;
package org.apache.bcel6_2_0.classfile;

import java.io.BufferedInputStream;
import java.io.DataInputStream;
Expand All @@ -25,7 +25,7 @@
import java.util.zip.ZipEntry;
import java.util.zip.ZipFile;

import org.apache.bcel.Const;
import org.apache.bcel6_2_0.Const;

/**
* Wrapper class that parses a given Java .class file. The method <A
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
* limitations under the License.
*
*/
package org.apache.bcel.classfile;
package org.apache.bcel6_2_0.classfile;

import java.io.DataInput;
import java.io.DataOutputStream;
import java.io.IOException;

import org.apache.bcel.Const;
import org.apache.bcel6_2_0.Const;

/**
* This class represents a chunk of Java byte code contained in a
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
* limitations under the License.
*
*/
package org.apache.bcel.classfile;
package org.apache.bcel6_2_0.classfile;

import java.io.DataInput;
import java.io.DataOutputStream;
import java.io.IOException;

import org.apache.bcel.Const;
import org.apache.bcel.Constants;
import org.apache.bcel6_2_0.Const;
import org.apache.bcel6_2_0.Constants;

/**
* This class represents an entry in the exception table of the <em>Code</em>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
* limitations under the License.
*
*/
package org.apache.bcel.classfile;
package org.apache.bcel6_2_0.classfile;

import java.io.DataInput;
import java.io.DataOutputStream;
import java.io.IOException;

import org.apache.bcel.Const;
import org.apache.bcel.util.BCELComparator;
import org.apache.bcel6_2_0.Const;
import org.apache.bcel6_2_0.util.BCELComparator;

/**
* Abstract superclass for classes to represent the different constant types
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
* limitations under the License.
*
*/
package org.apache.bcel.classfile;
package org.apache.bcel6_2_0.classfile;

import java.io.DataInput;
import java.io.DataOutputStream;
import java.io.IOException;

import org.apache.bcel.Const;
import org.apache.bcel6_2_0.Const;

/**
* Abstract super class for Fieldref, Methodref, InterfaceMethodref and
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
* limitations under the License.
*
*/
package org.apache.bcel.classfile;
package org.apache.bcel6_2_0.classfile;

import java.io.DataInput;
import java.io.DataOutputStream;
import java.io.IOException;

import org.apache.bcel.Const;
import org.apache.bcel6_2_0.Const;

/**
* This class is derived from the abstract {@link Constant}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
* limitations under the License.
*
*/
package org.apache.bcel.classfile;
package org.apache.bcel6_2_0.classfile;

import java.io.DataInput;
import java.io.DataOutputStream;
import java.io.IOException;

import org.apache.bcel.Const;
import org.apache.bcel6_2_0.Const;

/**
* This class is derived from the abstract {@link Constant}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
* limitations under the License.
*
*/
package org.apache.bcel.classfile;
package org.apache.bcel6_2_0.classfile;

import java.io.DataInput;
import java.io.IOException;

import org.apache.bcel.Const;
import org.apache.bcel6_2_0.Const;

/**
* This class represents a constant pool reference to a field.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
* limitations under the License.
*
*/
package org.apache.bcel.classfile;
package org.apache.bcel6_2_0.classfile;

import java.io.DataInput;
import java.io.DataOutputStream;
import java.io.IOException;

import org.apache.bcel.Const;
import org.apache.bcel6_2_0.Const;

/**
* This class is derived from the abstract {@link Constant}
Expand Down
Loading

0 comments on commit 7213e70

Please sign in to comment.