All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javacard.framework.AppletEvent Maven / Gradle / Ivy

There is a newer version: 2.2.2
Show newest version
/*
 * Copyright 2011 Licel LLC.
 *
 * Licensed 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 javacard.framework;

/**
 * The AppletEvent interface provides a callback interface for
 * the Java Card runtime environment to inform the applet about life cycle events.
 * An applet instance - subclass of Applet - should implement
 * this interface if it needs to be informed about supported life cycle events.
 *
 * 

* See Runtime Environment Specification for the Java Card Platform for details. */ public interface AppletEvent { /** * Called by the Java Card runtime environment to inform this applet instance that the Applet Deletion * Manager has been requested to delete it. */ public abstract void uninstall(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy