Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* org.osjava.jardiff.ClassInfo
*
* $Id: IOThread.java 1952 2005-08-28 18:03:41Z cybertiger $
* $URL: https://svn.osjava.org/svn/osjava/trunk/osjava-nio/src/java/org/osjava/nio/IOThread.java $
* $Rev: 1952 $
* $Date: 2005-08-28 18:03:41 +0000 (Sun, 28 Aug 2005) $
* $Author: cybertiger $
*
* Copyright (c) 2005, Antony Riley
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* + Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* + Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* + Neither the name JarDiff nor the names of its contributors may
* be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
package org.osjava.jardiff;
import java.util.Map;
/**
* Information about a class file.
*
* @author Antony Riley
*/
public final class ClassInfo extends AbstractInfo
{
/**
* The classfile version number.
*/
private int version;
/**
* The class signature.
*/
private String signature;
/**
* The internal classname of the superclass.
*/
private String supername;
/**
* An array of names of internal classnames of interfaces implmented
* by the class.
*/
private String[] interfaces;
/**
* A map of method signature to MethodInfo, for the methods provided
* by this class.
*/
private Map methodMap;
/**
* A map of field signature to FieldInfo, for the fields provided by
* this class.
*/
private Map fieldMap;
/**
* Create a new classinfo.
*
* @param version the class file version number.
* @param access the access flags for the class.
* @param name the internal name of the class.
* @param signature the signature of the class.
* @param interfaces an array of internal names of interfaces implemented
* by the class.
* @param methodMap a map of methods provided by this class.
* @param fieldMap a map of fields provided by this class.
*/
public ClassInfo(int version, int access, String name, String signature,
String supername, String[] interfaces, Map methodMap,
Map fieldMap) {
super(access, name);
this.version = version;
this.signature = signature;
this.supername = supername;
this.interfaces = interfaces;
this.methodMap = methodMap;
this.fieldMap = fieldMap;
}
/**
* Get the class file version.
*
* @return The class file version as specified in the java language spec.
*/
public final int getVersion() {
return version;
}
/**
* Get the class signature.
*
* @return the class signature
*/
public final String getSignature() {
return signature;
}
/**
* Get the internal name of the superclass.
*
* @return the internal name of the superclass
*/
public final String getSupername() {
return supername;
}
/**
* Get the internal names of the interfaces implemented by this class
*
* @return an array of internal names of classes implemented by the class.
*/
public final String[] getInterfaces() {
return interfaces;
}
/**
* Get the map of method signatures to methods.
*
* @return a map with method signatures as keys, and MethodInfos as values.
*/
public final Map getMethodMap() {
return methodMap;
}
/**
* Get the map of field signatures to fields.
*
* @return a map with field signatures as keys, and FieldInfos as values.
*/
public final Map getFieldMap() {
return fieldMap;
}
}