HomeSort by relevance Sort by last modified time
    Searched refs:applet (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/proguard/examples/annotations/examples/
Applet.java 4 * This applet illustrates the use of annotations for configuring ProGuard.
7 * javac -classpath ../lib/annotations.jar Applet.java
15 public class Applet extends java.applet.Applet
17 // Implementations for Applet.
  /prebuilts/tools/common/proguard/proguard4.7/examples/annotations/examples/
Applet.java 4 * This applet illustrates the use of annotations for configuring ProGuard.
7 * javac -classpath ../lib/annotations.jar Applet.java
14 public class Applet extends java.applet.Applet
16 // Implementations for Applet.
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/
AppletFrame.java 10 import java.applet.Applet;
11 import java.applet.AppletContext;
12 import java.applet.AppletStub;
13 import java.applet.AudioClip;
25 * <p>A Frame that runs an Applet within itself, making it possible
26 * for an applet to run as an application. Usage:
29 * public class MyApplet extends Applet {
31 * MyApplet applet = new MyApplet();
32 * new AppletFrame("My Applet Running As An App", applet, 640, 480)
46 Applet applet; field in class:AppletFrame
    [all...]
DemoApplet.java 19 public abstract class DemoApplet extends java.applet.Applet {
25 protected abstract Frame createDemoFrame(DemoApplet applet);
26 protected Dimension getDefaultFrameSize(DemoApplet applet, Frame f) {
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/calendar/
CalendarApp.java 28 * applet when an applet is started.
35 /* This creates a CalendarFrame for the demo applet. */
36 public Frame createDemoFrame(DemoApplet applet) {
37 return new CalendarFrame(applet);
CalendarCalc.java 61 * applet when an applet is started.
68 * This creates a CalendarCalcFrame for the demo applet.
70 public Frame createDemoFrame(DemoApplet applet) {
71 return new CalendarCalcFrame(applet);
89 private DemoApplet applet; field in class:CalendarCalcFrame
111 public CalendarCalcFrame(DemoApplet applet)
114 this.applet = applet;
120 * Initializes the applet. You never need to call this directly, i
    [all...]
CalendarFrame.java 63 private DemoApplet applet; field in class:CalendarFrame
71 this.applet = myApplet;
74 // When the window is closed, we want to shut down the applet or application
81 if (applet != null) {
82 applet.demoClosed();
114 * Initializes the applet. You never need to call this directly, it
115 * is called automatically by the system once the applet is created.
  /external/mdnsresponder/mDNSWindows/ControlPanel/
ControlPanel.cpp 241 CCPApp::AddApplet( CCPApplet * applet )
243 check( applet );
245 m_applets.AddTail( applet );
256 CCPApplet * applet; local
260 applet = new CCPApplet( IDR_APPLET, IDS_APPLET_DESCRIPTION, RUNTIME_CLASS( CConfigPropertySheet ) );
264 applet = NULL;
267 require_action( applet, exit, kNoMemoryErr );
269 AddApplet( applet );
322 CCPApplet * applet = m_applets.GetAt( pos ); local
323 check( applet );
    [all...]
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
DemoApplet.java 10 import java.applet.Applet;
21 * A simple Applet that shows a button. When pressed, the button
22 * shows the DemoAppletFrame. This Applet is meant to be embedded
29 public class DemoApplet extends Applet {
38 final DemoApplet applet = new DemoApplet(); local
39 new AppletFrame("Transliteration Demo", applet, 640, 480);
demo.bat 11 REM For best results, run the demo as an applet inside of Netscape
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/
Launcher.java 57 private DemoApplet applet; field in class:Launcher.LauncherFrame
59 LauncherFrame(DemoApplet applet) {
61 this.applet = applet;
73 if (applet != null) {
74 applet.demoClosed();
177 /* This creates a Frame for the demo applet. */
178 protected Frame createDemoFrame(DemoApplet applet) {
179 return new LauncherFrame(applet);
184 * applet when an applet is started
    [all...]
  /external/proguard/examples/
applets.pro 33 -keep public class * extends java.applet.Applet
  /prebuilts/tools/common/proguard/proguard4.7/examples/
applets.pro 33 -keep public class * extends java.applet.Applet
  /external/owasp/sanitizer/empiricism/
canned-data.js 9 "applet": true,
139 "applet",
254 "applet",
369 "applet",
484 "applet",
594 "applet": [
599 "applet",
715 "applet",
830 "applet",
945 "applet",
    [all...]
  /external/javassist/sample/duplicate/
Viewer.java 3 import java.applet.*;
7 public class Viewer extends Applet
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/holiday/
HolidayCalendarDemo.java 59 * applet when an applet is started.
66 /* This creates a CalendarFrame for the demo applet. */
67 public Frame createDemoFrame(DemoApplet applet) {
68 return new CalendarFrame(applet);
88 private DemoApplet applet; field in class:HolidayCalendarDemo.CalendarFrame
118 public CalendarFrame(DemoApplet applet)
121 this.applet = applet;
128 * Initializes the applet. You never need to call this directly, i
    [all...]
  /external/javassist/sample/rmi/
CountApplet.java 3 import java.applet.*;
10 public class CountApplet extends Applet implements ActionListener {
28 * as an applet.
  /external/javassist/src/main/javassist/tools/rmi/
ObjectImporter.java 20 import java.applet.Applet;
29 * object, the applet first calls <code>lookupObject()</code> and
36 * From the viewpoint of the applet, therefore, the two objects are
37 * identical. The applet can access the object on the server
41 * <p>The methods remotely called by the applet must be <code>public</code>.
42 * This is true even if the applet's class and the remote object's classs
61 * the applet cannot instantiate <code>C</code> locally or remotely.
86 * applet has been loaded from.
88 * @param applet the applet loaded from the <code>Webserver</code>
    [all...]
  /external/libese/apps/boot/card/src/com/android/verifiedboot/storage/
Storage.java 26 import javacard.framework.Applet;
54 public class Storage extends Applet implements ExtendedLength, Shareable {
102 * Installs this applet.
109 // GP-compliant-ish JavaCard applet registration
118 Storage applet = new Storage(); local
119 applet.register(bArray, aidOffset, (byte)aidLength);
122 applet.restore(bArray);
208 * Emits the state of this Applet to the wire.
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/rbnf/
RbnfDemo.java 69 protected Dimension getDefaultFrameSize(DemoApplet applet, Frame f) {
73 protected Frame createDemoFrame(DemoApplet applet) {
370 final DemoApplet theApplet = applet;
  /external/llvm/docs/_ocamldoc/
style.css 4 html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,
  /external/iproute2/misc/
ssfilter.y 48 applet: null expr label
  /prebuilts/tools/common/fest/
fest-swing-1.2.1.jar 
  /external/libvncserver/webclients/java-applet/
VncViewer.jar 
  /external/doclava/res/assets/templates/assets/
doclava-developer-core.css 10 embed,object,applet {

Completed in 5538 milliseconds

1 2 3