blob: a355b18a1a5dcc0327e83911a9c030ce8abab392 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package java.lang;
import java.lang.annotation.Annotation;
import java.lang.reflect.AnnotatedElement;
import java.net.URL;
/**
* Contains information about a Java package. This includes implementation and
* specification versions. Typically this information is retrieved from the
* manifest.
* <p>
* Packages are managed by class loaders. All classes loaded by the same loader
* from the same package share a {@code Package} instance.
*
* @see ClassLoader
* @since 1.0
*/
public class Package implements AnnotatedElement {
/*
* This class must be implemented by the VM vendor.
*/
/**
* Prevent this class from being instantiated
*/
private Package(){
//do nothing
}
/**
* Gets the annotation associated with the specified annotation type and
* this package, if present.
*
* @param annotationType
* the annotation type to look for.
* @return an instance of {@link Annotation} or {@code null}.
* @see java.lang.reflect.AnnotatedElement#getAnnotation(java.lang.Class)
* @since 1.5
*/
public <T extends Annotation> T getAnnotation(Class<T> annotationType) {
return null;
}
/**
* Gets all annotations associated with this package, if any.
*
* @return an array of {@link Annotation} instances, which may be empty.
* @see java.lang.reflect.AnnotatedElement#getAnnotations()
* @since 1.5
*/
public Annotation[] getAnnotations() {
return new Annotation[0];
}
/**
* Gets all annotations directly declared on this package, if any.
*
* @return an array of {@link Annotation} instances, which may be empty.
* @see java.lang.reflect.AnnotatedElement#getDeclaredAnnotations()
* @since 1.5
*/
public Annotation[] getDeclaredAnnotations() {
return new Annotation[0];
}
/**
* Indicates whether the specified annotation is present.
*
* @param annotationType
* the annotation type to look for.
* @return {@code true} if the annotation is present; {@code false}
* otherwise.
* @see java.lang.reflect.AnnotatedElement#isAnnotationPresent(java.lang.Class)
* @since 1.5
*/
public boolean isAnnotationPresent(Class<? extends Annotation> annotationType) {
return false;
}
/**
* Returns the title of the implementation of this package, or {@code null}
* if this is unknown. The format of this string is unspecified.
*
* @return the implementation title, may be {@code null}.
*/
public String getImplementationTitle() {
return null;
}
/**
* Returns the name of the vendor or organization that provides this
* implementation of the package, or {@code null} if this is unknown. The
* format of this string is unspecified.
*
* @return the implementation vendor name, may be {@code null}.
*/
public String getImplementationVendor() {
return null;
}
/**
* Returns the version of the implementation of this package, or {@code
* null} if this is unknown. The format of this string is unspecified.
*
* @return the implementation version, may be {@code null}.
*/
public String getImplementationVersion() {
return null;
}
/**
* Returns the name of this package in the standard dot notation; for
* example: "java.lang".
*
* @return the name of this package.
*/
public String getName() {
return null;
}
/**
* Attempts to locate the requested package in the caller's class loader. If
* no package information can be located, {@code null} is returned.
*
* @param packageName
* the name of the package to find.
* @return the requested package, or {@code null}.
* @see ClassLoader#getPackage(java.lang.String)
*/
public static Package getPackage(String packageName) {
return null;
}
/**
* Returns all the packages known to the caller's class loader.
*
* @return all the packages known to the caller's class loader.
* @see ClassLoader#getPackages
*/
public static Package[] getPackages() {
return null;
}
/**
* Returns the title of the specification this package implements, or
* {@code null} if this is unknown.
*
* @return the specification title, may be {@code null}.
*/
public String getSpecificationTitle() {
return null;
}
/**
* Returns the name of the vendor or organization that owns and maintains
* the specification this package implements, or {@code null} if this is
* unknown.
*
* @return the specification vendor name, may be {@code null}.
*/
public String getSpecificationVendor() {
return null;
}
/**
* Returns the version of the specification this package implements, or
* {@code null} if this is unknown. The version string is a sequence of
* non-negative integers separated by dots; for example: "1.2.3".
*
* @return the specification version string, may be {@code null}.
*/
public String getSpecificationVersion() {
return null;
}
@Override
public int hashCode() {
return 0;
}
/**
* Indicates whether this package's specification version is compatible with
* the specified version string. Version strings are compared by comparing
* each dot separated part of the version as an integer.
*
* @param version
* the version string to compare against.
* @return {@code true} if the package versions are compatible; {@code
* false} otherwise.
* @throws NumberFormatException
* if this package's version string or the one provided are not
* in the correct format.
*/
public boolean isCompatibleWith(String version) throws NumberFormatException {
return false;
}
/**
* Indicates whether this package is sealed.
*
* @return {@code true} if this package is sealed; {@code false} otherwise.
*/
public boolean isSealed() {
return false;
}
/**
* Indicates whether this package is sealed with respect to the specified
* URL.
*
* @param url
* the URL to check.
* @return {@code true} if this package is sealed with {@code url}; {@code
* false} otherwise
*/
public boolean isSealed(URL url) {
return false;
}
@Override
public String toString() {
return null;
}
}