Commit e6b952c2 by Bryce McKinlay Committed by Bryce McKinlay

* doc/*.texi: Remove generated documentation.

From-SVN: r41778
parent fa340504
2001-05-02 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
* doc/*.texi: Remove generated documentation.
2001-04-30 Matt Kraai <kraai@alumni.carnegiemellon.edu>
* java/io/natFile.cc (performSetReadOnly): Fix #ifdef test.
......
@deftypemethod AppletContext {public AudioClip} getAudioClip (java.net.URL@w{ }@var{url})
Returns an audio clip from the specified URL.
@end deftypemethod
@deftypemethod AppletContext {public Image} getImage (java.net.URL@w{ }@var{url})
Returns an image from the specified URL. Note that the image is not
actually retrieved until the applet attempts to display it, so this
method returns immediately.
@end deftypemethod
@deftypemethod AppletContext {public Applet} getApplet (java.lang.String@w{ }@var{name})
Returns the applet in the document for this object that has the
specified name.
@end deftypemethod
@deftypemethod AppletContext {public Enumeration} getApplets ()
Returns a list of all the applets in the document for this object.
@end deftypemethod
@deftypemethod AppletContext {public void} showDocument (java.net.URL@w{ }@var{url})
Displays the web page pointed to by the specified URL in the window
for this object. This page replaces the document that is currently
there.
@end deftypemethod
@deftypemethod AppletContext {public void} showDocument (java.net.URL@w{ }@var{url}, java.lang.String@w{ }@var{target})
Displays the web page pointed to be the sepcified URL in the window
with the specified name. The standard names "_top", "_blank",
"_parent", and "_self" are allowed.
@end deftypemethod
@deftypemethod AppletContext {public void} showStatus (java.lang.String@w{ }@var{message})
Displays the specified message in the status window if that window
exists.
@end deftypemethod
@deftypemethod Applet {public URL} getDocumentBase ()
Returns the URL of the document this applet is embedded in.
@end deftypemethod
@deftypemethod Applet {public URL} getCodeBase ()
Returns the URL of the code base for this applet.
@end deftypemethod
@deftypemethod Applet {public String} getParameter (java.lang.String@w{ }@var{name})
Returns the value of the specified parameter that was specified in
the &lt;APPLET&gt; tag for this applet.
@end deftypemethod
@deftypemethod Applet {public AppletContext} getAppletContext ()
Returns the applet context for this applet.
@end deftypemethod
@deftypemethod Applet {public boolean} isActive ()
Tests whether or not this applet is currently active.
@end deftypemethod
@deftypemethod Applet {public void} resize (int@w{ }@var{width}, int@w{ }@var{height})
Requests that the applet window for this applet be resized.
@end deftypemethod
@deftypemethod Applet {public void} resize (java.awt.Dimension@w{ }@var{dim})
Requests that the applet window for this applet be resized.
@end deftypemethod
@deftypemethod Applet {public AudioClip} getAudioClip (java.net.URL@w{ }@var{url})
Returns an audio clip from the specified URL.
@end deftypemethod
@deftypemethod Applet {public AudioClip} getAudioClip (java.net.URL@w{ }@var{url}, java.lang.String@w{ }@var{name})
Returns an audio clip from the specified URL and name
@end deftypemethod
@deftypemethod Applet {public void} play (java.net.URL@w{ }@var{url})
Loads and plays the audio clip pointed to by the specified URL.
@end deftypemethod
@deftypemethod Applet {public void} play (java.net.URL@w{ }@var{url}, java.lang.String@w{ }@var{name})
Loads and plays the audio clip pointed to by the specified URL.
@end deftypemethod
@deftypemethod Applet {public Image} getImage (java.net.URL@w{ }@var{url})
Returns an image from the specified URL. Note that the image is not
actually retrieved until the applet attempts to display it, so this
method returns immediately.
@end deftypemethod
@deftypemethod Applet {public Image} getImage (java.net.URL@w{ }@var{url}, java.lang.String@w{ }@var{name})
Returns an image from the specified URL. Note that the image is not
actually retrieved until the applet attempts to display it, so this
method returns immediately.
@end deftypemethod
@deftypemethod Applet {public Locale} getLocale ()
Returns the locale for this applet, if it has been set. If no applet
specific locale has been set, the default locale is returned.
@end deftypemethod
@deftypemethod Applet {public String} getAppletInfo ()
Returns a descriptive string with applet defined information. The
implementation in this class returns @code{null}. Applets who
wish to return this information should override.
@end deftypemethod
@deftypemethod Applet {public String} getParameterInfo ()
Returns a list of parameters this applet supports. Each element of
the array is a list of three strings with the name of the parameter,
the data type or valid values, and a description. This method is
optional and the default implementation returns @code{null}.
@end deftypemethod
@deftypemethod Applet {public void} init ()
This method is called when the applet is first loaded. The default
implementation does nothing. Applets that wish to do one time
initialization should override.
@end deftypemethod
@deftypemethod Applet {public void} destroy ()
This method is called when the applet is being unloaded. The default
implementation does nothing. Applets that need to clean up resources
on exit should override.
@end deftypemethod
@deftypemethod Applet {public void} start ()
This method is called when the applet should start running. This is
normally each time a web page containing it is loaded. The default
implemention does nothing. Subclasses should override.
@end deftypemethod
@deftypemethod Applet {public void} stop ()
This method is called when the applet should stop running. This is
normally when the next web page is loaded. The default implementation
does nothing.
@end deftypemethod
@deftypemethod Applet {public final void} setStub (java.applet.AppletStub@w{ }@var{stub})
The browser calls this method to set the applet's stub, which is the
low level interface to the browser.
@end deftypemethod
@deftypemethod AppletStub {public URL} getDocumentBase ()
Returns the URL of the document this applet is embedded in.
@end deftypemethod
@deftypemethod AppletStub {public URL} getCodeBase ()
Returns the URL of the code base for this applet.
@end deftypemethod
@deftypemethod AppletStub {public String} getParameter (java.lang.String@w{ }@var{name})
Returns the value of the specified parameter that was specified in
the &lt;APPLET&gt; tag for this applet.
@end deftypemethod
@deftypemethod AppletStub {public AppletContext} getAppletContext ()
Returns the applet context for this applet.
@end deftypemethod
@deftypemethod AppletStub {public boolean} isActive ()
Tests whether or not this applet is currently active.
@end deftypemethod
@deftypemethod AppletStub {public void} appletResize (int@w{ }@var{width}, int@w{ }@var{height})
Requests that the applet window for this applet be resized.
@end deftypemethod
@deftypemethod AudioClip {public void} play ()
Plays the audio clip starting from the beginning.
@end deftypemethod
@deftypemethod AudioClip {public void} stop ()
Stops playing this audio clip. There is no mechanism for restarting
at the point where the clip is stopped.
@end deftypemethod
@deftypemethod AudioClip {public void} loop ()
Plays this audio clip in a continuous loop.
@end deftypemethod
@deftypemethod ColorSpace {public static ColorSpace} getInstance (int@w{ }@var{colorspace})
@end deftypemethod
@deftypemethod ColorSpace {public boolean} isCS_sRGB ()
@end deftypemethod
@deftypemethod ColorSpace {public abstract float} toRGB (float[]@w{ }@var{colorvalue})
@end deftypemethod
@deftypemethod ColorSpace {public abstract float} fromRGB (float[]@w{ }@var{rgbvalue})
@end deftypemethod
@deftypemethod ColorSpace {public abstract float} toCIEXYZ (float[]@w{ }@var{colorvalue})
@end deftypemethod
@deftypemethod ColorSpace {public abstract float} fromCIEXYZ (float[]@w{ }@var{colorvalue})
@end deftypemethod
@deftypemethod ColorSpace {public int} getType ()
@end deftypemethod
@deftypemethod ColorSpace {public int} getNumComponents ()
@end deftypemethod
@deftypemethod ColorSpace {public String} getName (int@w{ }@var{idx})
@end deftypemethod
@deftypemethod ColorSpace {public String} toString ()
@end deftypemethod
@deftypemethod ICC_ColorSpace {public ICC_Profile} getProfile ()
@end deftypemethod
@deftypemethod ICC_ColorSpace {public float} toRGB (float[]@w{ }@var{colorvalue})
@end deftypemethod
@deftypemethod ICC_ColorSpace {public float} fromRGB (float[]@w{ }@var{rgbvalue})
@end deftypemethod
@deftypemethod ICC_ColorSpace {public float} toCIEXYZ (float[]@w{ }@var{colorvalue})
@end deftypemethod
@deftypemethod ICC_ColorSpace {public float} fromCIEXYZ (float[]@w{ }@var{colorvalue})
@end deftypemethod
@deftypemethod ICC_Profile {public int} getNumComponents ()
@end deftypemethod
@deftypemethod ButtonPeer {public void} setLabel (java.lang.String@w{ }@var{label})
@end deftypemethod
@deftypemethod CheckboxMenuItemPeer {public void} setState (boolean@w{ }@var{state})
@end deftypemethod
@deftypemethod CheckboxPeer {public void} setCheckboxGroup (java.awt.CheckboxGroup@w{ }@var{group})
@end deftypemethod
@deftypemethod CheckboxPeer {public void} setLabel (java.lang.String@w{ }@var{label})
@end deftypemethod
@deftypemethod CheckboxPeer {public void} setState (boolean@w{ }@var{state})
@end deftypemethod
@deftypemethod ChoicePeer {public void} add (java.lang.String@w{ }@var{item}, int@w{ }@var{index})
@end deftypemethod
@deftypemethod ChoicePeer {public void} remove (int@w{ }@var{index})
@end deftypemethod
@deftypemethod ChoicePeer {public void} select (int@w{ }@var{index})
@end deftypemethod
@deftypemethod ComponentPeer {public int} checkImage (java.awt.Image@w{ }@var{img}, int@w{ }@var{width}, int@w{ }@var{height}, java.awt.image.ImageObserver@w{ }@var{o})
@end deftypemethod
@deftypemethod ComponentPeer {public Image} createImage (java.awt.image.ImageProducer@w{ }@var{prod})
@end deftypemethod
@deftypemethod ComponentPeer {public Image} createImage (int@w{ }@var{width}, int@w{ }@var{height})
@end deftypemethod
@deftypemethod ComponentPeer {public void} dispose ()
@end deftypemethod
@deftypemethod ComponentPeer {public GraphicsConfiguration} getGraphicsConfiguration ()
Get the graphics configuration of the component. The color model
of the component can be derived from the configuration.
@end deftypemethod
@deftypemethod ComponentPeer {public FontMetrics} getFontMetrics (java.awt.Font@w{ }@var{f})
@end deftypemethod
@deftypemethod ComponentPeer {public Graphics} getGraphics ()
@end deftypemethod
@deftypemethod ComponentPeer {public Point} getLocationOnScreen ()
@end deftypemethod
@deftypemethod ComponentPeer {public Dimension} getMinimumSize ()
@end deftypemethod
@deftypemethod ComponentPeer {public Dimension} getPreferredSize ()
@end deftypemethod
@deftypemethod ComponentPeer {public Toolkit} getToolkit ()
@end deftypemethod
@deftypemethod ComponentPeer {public void} handleEvent (java.awt.AWTEvent@w{ }@var{e})
@end deftypemethod
@deftypemethod ComponentPeer {public boolean} isFocusTraversable ()
@end deftypemethod
@deftypemethod ComponentPeer {public void} paint (java.awt.Graphics@w{ }@var{graphics})
@end deftypemethod
@deftypemethod ComponentPeer {public boolean} prepareImage (java.awt.Image@w{ }@var{img}, int@w{ }@var{width}, int@w{ }@var{height}, java.awt.image.ImageObserver@w{ }@var{o})
@end deftypemethod
@deftypemethod ComponentPeer {public void} print (java.awt.Graphics@w{ }@var{graphics})
@end deftypemethod
@deftypemethod ComponentPeer {public void} repaint (long@w{ }@var{tm}, int@w{ }@var{x}, int@w{ }@var{y}, int@w{ }@var{width}, int@w{ }@var{height})
@end deftypemethod
@deftypemethod ComponentPeer {public void} requestFocus ()
@end deftypemethod
@deftypemethod ComponentPeer {public void} setBackground (java.awt.Color@w{ }@var{color})
@end deftypemethod
@deftypemethod ComponentPeer {public void} setBounds (int@w{ }@var{x}, int@w{ }@var{y}, int@w{ }@var{width}, int@w{ }@var{height})
@end deftypemethod
@deftypemethod ComponentPeer {public void} setCursor (java.awt.Cursor@w{ }@var{cursor})
@end deftypemethod
@deftypemethod ComponentPeer {public void} setEnabled (boolean@w{ }@var{enabled})
@end deftypemethod
@deftypemethod ComponentPeer {public void} setEventMask (long@w{ }@var{eventMask})
@end deftypemethod
@deftypemethod ComponentPeer {public void} setFont (java.awt.Font@w{ }@var{font})
@end deftypemethod
@deftypemethod ComponentPeer {public void} setForeground (java.awt.Color@w{ }@var{color})
@end deftypemethod
@deftypemethod ComponentPeer {public void} setVisible (boolean@w{ }@var{visible})
@end deftypemethod
@deftypemethod ContainerPeer {public Insets} getInsets ()
@end deftypemethod
@deftypemethod ContainerPeer {public void} beginValidate ()
@end deftypemethod
@deftypemethod ContainerPeer {public void} endValidate ()
@end deftypemethod
@deftypemethod DialogPeer {public void} setResizable (boolean@w{ }@var{resizeable})
@end deftypemethod
@deftypemethod DialogPeer {public void} setTitle (java.lang.String@w{ }@var{title})
@end deftypemethod
@deftypemethod FileDialogPeer {public void} setDirectory (java.lang.String@w{ }@var{dir})
@end deftypemethod
@deftypemethod FileDialogPeer {public void} setFile (java.lang.String@w{ }@var{file})
@end deftypemethod
@deftypemethod FileDialogPeer {public void} setFilenameFilter (java.io.FilenameFilter@w{ }@var{filter})
@end deftypemethod
@deftypemethod FramePeer {public void} setIconImage (java.awt.Image@w{ }@var{image})
@end deftypemethod
@deftypemethod FramePeer {public void} setMenuBar (java.awt.MenuBar@w{ }@var{mb})
@end deftypemethod
@deftypemethod FramePeer {public void} setResizable (boolean@w{ }@var{resizable})
@end deftypemethod
@deftypemethod FramePeer {public void} setTitle (java.lang.String@w{ }@var{title})
@end deftypemethod
@deftypemethod LabelPeer {public void} setAlignment (int@w{ }@var{alignment})
@end deftypemethod
@deftypemethod LabelPeer {public void} setText (java.lang.String@w{ }@var{text})
@end deftypemethod
@deftypemethod ListPeer {public void} add (java.lang.String@w{ }@var{item}, int@w{ }@var{index})
@end deftypemethod
@deftypemethod ListPeer {public void} delItems (int@w{ }@var{start_index}, int@w{ }@var{end_index})
@end deftypemethod
@deftypemethod ListPeer {public void} deselect (int@w{ }@var{index})
@end deftypemethod
@deftypemethod ListPeer {public int} getSelectedIndexes ()
@end deftypemethod
@deftypemethod ListPeer {public void} makeVisible (int@w{ }@var{index})
@end deftypemethod
@deftypemethod ListPeer {public void} removeAll ()
@end deftypemethod
@deftypemethod ListPeer {public void} select (int@w{ }@var{index})
@end deftypemethod
@deftypemethod ListPeer {public void} setMultipleMode (boolean@w{ }@var{multipleMode})
@end deftypemethod
@deftypemethod MenuBarPeer {public void} addHelpMenu (java.awt.Menu@w{ }@var{menu})
@end deftypemethod
@deftypemethod MenuBarPeer {public void} add (java.awt.Menu@w{ }@var{menu})
@end deftypemethod
@deftypemethod MenuBarPeer {public void} remove (int@w{ }@var{index})
@end deftypemethod
@deftypemethod MenuComponentPeer {public void} dispose ()
@end deftypemethod
@deftypemethod MenuItemPeer {public void} setEnabled (boolean@w{ }@var{enabled})
@end deftypemethod
@deftypemethod MenuItemPeer {public void} setLabel (java.lang.String@w{ }@var{text})
@end deftypemethod
@deftypemethod MenuPeer {public void} add (java.awt.MenuItem@w{ }@var{item})
@end deftypemethod
@deftypemethod MenuPeer {public void} addSeparator ()
@end deftypemethod
@deftypemethod MenuPeer {public void} remove (int@w{ }@var{index})
@end deftypemethod
@deftypemethod PopupMenuPeer {public void} show (java.awt.Event@w{ }@var{e})
@end deftypemethod
@deftypemethod ScrollbarPeer {public void} setLineIncrement (int@w{ }@var{increment})
@end deftypemethod
@deftypemethod ScrollbarPeer {public void} setPageIncrement (int@w{ }@var{increment})
@end deftypemethod
@deftypemethod ScrollbarPeer {public void} setValues (int@w{ }@var{value}, int@w{ }@var{visible}, int@w{ }@var{minimum}, int@w{ }@var{maximum})
@end deftypemethod
@deftypemethod ScrollPanePeer {public void} childResized (int@w{ }@var{width}, int@w{ }@var{height})
@end deftypemethod
@deftypemethod ScrollPanePeer {public int} getHScrollbarHeight ()
@end deftypemethod
@deftypemethod ScrollPanePeer {public int} getVScrollbarWidth ()
@end deftypemethod
@deftypemethod ScrollPanePeer {public void} setScrollPosition (int@w{ }@var{x}, int@w{ }@var{y})
@end deftypemethod
@deftypemethod ScrollPanePeer {public void} setUnitIncrement (java.awt.Adjustable@w{ }@var{adj}, int@w{ }@var{increment})
@end deftypemethod
@deftypemethod ScrollPanePeer {public void} setValue (java.awt.Adjustable@w{ }@var{adj}, int@w{ }@var{value})
@end deftypemethod
@deftypemethod TextAreaPeer {public void} insert (java.lang.String@w{ }@var{text}, int@w{ }@var{pos})
@end deftypemethod
@deftypemethod TextAreaPeer {public void} replaceRange (java.lang.String@w{ }@var{text}, int@w{ }@var{start}, int@w{ }@var{end})
@end deftypemethod
@deftypemethod TextComponentPeer {public int} getCaretPosition ()
@end deftypemethod
@deftypemethod TextComponentPeer {public int} getSelectionEnd ()
@end deftypemethod
@deftypemethod TextComponentPeer {public int} getSelectionStart ()
@end deftypemethod
@deftypemethod TextComponentPeer {public String} getText ()
@end deftypemethod
@deftypemethod TextComponentPeer {public void} select (int@w{ }@var{start}, int@w{ }@var{end})
@end deftypemethod
@deftypemethod TextComponentPeer {public void} setCaretPosition (int@w{ }@var{pos})
@end deftypemethod
@deftypemethod TextComponentPeer {public void} setEditable (boolean@w{ }@var{editable})
@end deftypemethod
@deftypemethod TextComponentPeer {public void} setText (java.lang.String@w{ }@var{text})
@end deftypemethod
@deftypemethod TextFieldPeer {public void} setEchoChar (char@w{ }@var{echo})
@end deftypemethod
@deftypemethod WindowPeer {public void} toBack ()
@end deftypemethod
@deftypemethod WindowPeer {public void} toFront ()
@end deftypemethod
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
@deftypemethod PhantomReference {public Object} get ()
Returns the object, this reference refers to.
@end deftypemethod
@deftypemethod Reference {public Object} get ()
Returns the object, this reference refers to.
@end deftypemethod
@deftypemethod Reference {public void} clear ()
Clears the reference, so that it doesn't refer to its object
anymore. For soft and weak references this is called by the
garbage collection. For phantom references you should call
this when enqueuing the reference.
@end deftypemethod
@deftypemethod Reference {public boolean} isEnqueued ()
Tells if the object is enqueued on a reference queue.
@end deftypemethod
@deftypemethod Reference {public boolean} enqueue ()
Enqueue an object on a reference queue. This is normally executed
by the garbage collection.
@end deftypemethod
@deftypemethod ReferenceQueue {public synchronized Reference} poll ()
Checks if there is a reference on the queue, returning it
immediately. The reference will be dequeued.
@end deftypemethod
@deftypemethod ReferenceQueue {public synchronized Reference} remove (long@w{ }@var{timeout}) @*throws InterruptedException
Removes a reference from the queue, blocking for @code{timeout}
until a reference is enqueued.
@end deftypemethod
@deftypemethod ReferenceQueue {public Reference} remove () @*throws InterruptedException
Removes a reference from the queue, blocking until a reference is
enqueued.
@end deftypemethod
@deftypemethod SoftReference {public Object} get ()
Returns the object, this reference refers to.
@end deftypemethod
@deftypemethod BigDecimal {public static BigDecimal} valueOf (long@w{ }@var{val})
@end deftypemethod
@deftypemethod BigDecimal {public static BigDecimal} valueOf (long@w{ }@var{val}, int@w{ }@var{scale}) @*throws NumberFormatException
@end deftypemethod
@deftypemethod BigDecimal {public BigDecimal} add (java.math.BigDecimal@w{ }@var{val})
@end deftypemethod
@deftypemethod BigDecimal {public BigDecimal} subtract (java.math.BigDecimal@w{ }@var{val})
@end deftypemethod
@deftypemethod BigDecimal {public BigDecimal} multiply (java.math.BigDecimal@w{ }@var{val})
@end deftypemethod
@deftypemethod BigDecimal {public BigDecimal} divide (java.math.BigDecimal@w{ }@var{val}, int@w{ }@var{roundingMode}) @*throws ArithmeticException, IllegalArgumentException
@end deftypemethod
@deftypemethod BigDecimal {public BigDecimal} divide (java.math.BigDecimal@w{ }@var{val}, int@w{ }@var{newScale}, int@w{ }@var{roundingMode}) @*throws ArithmeticException, IllegalArgumentException
@end deftypemethod
@deftypemethod BigDecimal {public int} compareTo (java.math.BigDecimal@w{ }@var{val})
@end deftypemethod
@deftypemethod BigDecimal {public int} compareTo (java.lang.Object@w{ }@var{val})
@end deftypemethod
@deftypemethod BigDecimal {public boolean} equals (java.lang.Object@w{ }@var{o})
@end deftypemethod
@deftypemethod BigDecimal {public int} hashCode ()
@end deftypemethod
@deftypemethod BigDecimal {public BigDecimal} max (java.math.BigDecimal@w{ }@var{val})
@end deftypemethod
@deftypemethod BigDecimal {public BigDecimal} min (java.math.BigDecimal@w{ }@var{val})
@end deftypemethod
@deftypemethod BigDecimal {public BigDecimal} movePointLeft (int@w{ }@var{n})
@end deftypemethod
@deftypemethod BigDecimal {public BigDecimal} movePointRight (int@w{ }@var{n})
@end deftypemethod
@deftypemethod BigDecimal {public int} signum ()
@end deftypemethod
@deftypemethod BigDecimal {public int} scale ()
@end deftypemethod
@deftypemethod BigDecimal {public BigDecimal} abs ()
@end deftypemethod
@deftypemethod BigDecimal {public BigDecimal} negate ()
@end deftypemethod
@deftypemethod BigDecimal {public String} toString ()
@end deftypemethod
@deftypemethod BigDecimal {public BigInteger} toBigInteger ()
@end deftypemethod
@deftypemethod BigDecimal {public int} intValue ()
@end deftypemethod
@deftypemethod BigDecimal {public long} longValue ()
@end deftypemethod
@deftypemethod BigDecimal {public float} floatValue ()
@end deftypemethod
@deftypemethod BigDecimal {public double} doubleValue ()
@end deftypemethod
@deftypemethod BigInteger {public static BigInteger} valueOf (long@w{ }@var{val})
@end deftypemethod
@deftypemethod BigInteger {public int} signum ()
@end deftypemethod
@deftypemethod BigInteger {public int} compareTo (java.lang.Object@w{ }@var{obj})
@end deftypemethod
@deftypemethod BigInteger {public int} compareTo (java.math.BigInteger@w{ }@var{val})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} min (java.math.BigInteger@w{ }@var{val})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} max (java.math.BigInteger@w{ }@var{val})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} add (java.math.BigInteger@w{ }@var{val})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} subtract (java.math.BigInteger@w{ }@var{val})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} multiply (java.math.BigInteger@w{ }@var{y})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} divide (java.math.BigInteger@w{ }@var{val})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} remainder (java.math.BigInteger@w{ }@var{val})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} divideAndRemainder (java.math.BigInteger@w{ }@var{val})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} mod (java.math.BigInteger@w{ }@var{m})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} pow (int@w{ }@var{exponent})
Calculate the integral power of a BigInteger.
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} modInverse (java.math.BigInteger@w{ }@var{y})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} modPow (java.math.BigInteger@w{ }@var{exponent}, java.math.BigInteger@w{ }@var{m})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} gcd (java.math.BigInteger@w{ }@var{y})
@end deftypemethod
@deftypemethod BigInteger {public boolean} isProbablePrime (int@w{ }@var{certainty})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} shiftLeft (int@w{ }@var{n})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} shiftRight (int@w{ }@var{n})
@end deftypemethod
@deftypemethod BigInteger {public String} toString ()
@end deftypemethod
@deftypemethod BigInteger {public String} toString (int@w{ }@var{radix})
@end deftypemethod
@deftypemethod BigInteger {public int} intValue ()
@end deftypemethod
@deftypemethod BigInteger {public long} longValue ()
@end deftypemethod
@deftypemethod BigInteger {public int} hashCode ()
@end deftypemethod
@deftypemethod BigInteger {public boolean} equals (java.lang.Object@w{ }@var{obj})
@end deftypemethod
@deftypemethod BigInteger {public double} doubleValue ()
@end deftypemethod
@deftypemethod BigInteger {public float} floatValue ()
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} abs ()
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} negate ()
@end deftypemethod
@deftypemethod BigInteger {public int} bitLength ()
Calculates ceiling(log2(this < 0 ? -this : this+1))
See Common Lisp: the Language, 2nd ed, p. 361.
@end deftypemethod
@deftypemethod BigInteger {public byte} toByteArray ()
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} and (java.math.BigInteger@w{ }@var{y})
Return the logical (bit-wise) "and" of two BigIntegers.
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} or (java.math.BigInteger@w{ }@var{y})
Return the logical (bit-wise) "(inclusive) or" of two BigIntegers.
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} xor (java.math.BigInteger@w{ }@var{y})
Return the logical (bit-wise) "exclusive or" of two BigIntegers.
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} not ()
Return the logical (bit-wise) negation of a BigInteger.
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} andNot (java.math.BigInteger@w{ }@var{val})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} clearBit (int@w{ }@var{n})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} setBit (int@w{ }@var{n})
@end deftypemethod
@deftypemethod BigInteger {public boolean} testBit (int@w{ }@var{n})
@end deftypemethod
@deftypemethod BigInteger {public BigInteger} flipBit (int@w{ }@var{n})
@end deftypemethod
@deftypemethod BigInteger {public int} getLowestSetBit ()
@end deftypemethod
@deftypemethod BigInteger {public int} bitCount ()
Count one bits in a BigInteger.
If argument is negative, count zero bits instead.
@end deftypemethod
This source diff could not be displayed because it is too large. You can view the blob instead.
@deftypemethod Attributes {public String} getValue (java.lang.String@w{ }@var{name})
Gets the value of an attribute name given as a String.
@end deftypemethod
@deftypemethod Attributes {public String} getValue (java.util.jar.Attributes.Name@w{ }@var{name})
Gets the value of the given attribute name.
@end deftypemethod
@deftypemethod Attributes {public String} putValue (java.lang.String@w{ }@var{name}, java.lang.String@w{ }@var{value})
Stores an attribute name (represented by a String) and value in this
Attributes map.
When the (case insensitive string) name already exists the value is
replaced and the old value is returned.
@end deftypemethod
@deftypemethod Attributes {public Object} clone ()
Return a clone of this attribute map.
@end deftypemethod
@deftypemethod Attributes {public void} clear ()
Removes all attributes.
@end deftypemethod
@deftypemethod Attributes {public boolean} containsKey (java.lang.Object@w{ }@var{attrName})
Checks to see if there is an attribute with the specified name.
XXX - what if the object is a String?
@end deftypemethod
@deftypemethod Attributes {public boolean} containsValue (java.lang.Object@w{ }@var{attrValue})
Checks to see if there is an attribute name with the specified value.
@end deftypemethod
@deftypemethod Attributes {public Set} entrySet ()
Gives a Set of attribute name and values pairs as MapEntries.
@end deftypemethod
@deftypemethod Attributes {public boolean} equals (java.lang.Object@w{ }@var{o})
Checks to see if two Attributes are equal. The supplied object must be
a real instance of Attributes and contain the same attribute name/value
pairs.
@end deftypemethod
@deftypemethod Attributes {public Object} get (java.lang.Object@w{ }@var{attrName})
Gets the value of a specified attribute name.
XXX - what if the object is a String?
@end deftypemethod
@deftypemethod Attributes {public int} hashCode ()
Returns the hashcode of the attribute name/value map.
@end deftypemethod
@deftypemethod Attributes {public boolean} isEmpty ()
Returns true if there are no attributes set, false otherwise.
@end deftypemethod
@deftypemethod Attributes {public Set} keySet ()
Gives a Set of all the values of defined attribute names.
@end deftypemethod
@deftypemethod Attributes {public Object} put (java.lang.Object@w{ }@var{name}, java.lang.Object@w{ }@var{value})
Adds or replaces a attribute name/value pair.
XXX - What if the name is a string? What if the name is neither a Name
nor a String? What if the value is not a string?
@end deftypemethod
@deftypemethod Attributes {public void} putAll (java.util.Map@w{ }@var{attr})
Adds or replaces all attribute name/value pairs from another
Attributes object to this one. The supplied Map must be an instance of
Attributes.
@end deftypemethod
@deftypemethod Attributes {public Object} remove (java.lang.Object@w{ }@var{name})
Remove a attribute name/value pair.
XXX - What if the name is a String?
@end deftypemethod
@deftypemethod Attributes {public int} size ()
Returns the number of defined attribute name/value pairs.
@end deftypemethod
@deftypemethod Attributes {public Collection} values ()
Returns all the values of the defined attribute name/value pairs as a
Collection.
@end deftypemethod
@deftypemethod Attributes.Name {public int} hashCode ()
Returns the hash code of the (lowercase) String representation of
this Name.
@end deftypemethod
@deftypemethod Attributes.Name {public boolean} equals (java.lang.Object@w{ }@var{o})
Checks if another object is equal to this Name object.
Another object is equal to this Name object if it is an instance of
Name and the (lowercase) string representation of the name is equal.
@end deftypemethod
@deftypemethod Attributes.Name {public String} toString ()
Returns the string representation of this Name as given to the
constructor (not neccesarily the lower case representation).
@end deftypemethod
@deftypemethod JarEntry {public Attributes} getAttributes () @*throws IOException
Returns a copy of the Attributes set for this entry.
When no Attributes are set in the manifest null is returned.
@end deftypemethod
@deftypemethod JarEntry {public Certificate} getCertificates ()
Returns a copy of the certificates set for this entry.
When no certificates are set or when not all data of this entry has
been read null is returned.
To make sure that this call returns a valid value you must read all
data from the JarInputStream for this entry.
When you don't need the data for an entry but want to know the
certificates that are set for the entry then you can skip all data by
calling @code{skip(entry.getSize())} on the JarInputStream for
the entry.
@end deftypemethod
@deftypemethod JarFile {public Enumeration} entries () @*throws IllegalStateException
Returns a enumeration of all the entries in the JarFile.
Note that also the Jar META-INF entries are returned.
@end deftypemethod
@deftypemethod JarFile {public ZipEntry} getEntry (java.lang.String@w{ }@var{name})
XXX
It actually returns a JarEntry not a zipEntry
@end deftypemethod
@deftypemethod JarFile {public synchronized InputStream} getInputStream (java.util.zip.ZipEntry@w{ }@var{entry}) @*throws ZipException, IOException
XXX should verify the inputstream
@end deftypemethod
@deftypemethod JarFile {public JarEntry} getJarEntry (java.lang.String@w{ }@var{name})
Returns the JarEntry that belongs to the name if such an entry
exists in the JarFile. Returns null otherwise
Convenience method that just casts the result from @code{getEntry}
to a JarEntry.
@end deftypemethod
@deftypemethod JarFile {public Manifest} getManifest ()
Returns the manifest for this JarFile or null when the JarFile does not
contain a manifest file.
@end deftypemethod
@deftypemethod JarInputStream {protected ZipEntry} createZipEntry (java.lang.String@w{ }@var{name})
Creates a JarEntry for a particular name and consults the manifest
for the Attributes of the entry.
Used by @code{ZipEntry.getNextEntry()}
@end deftypemethod
@deftypemethod JarInputStream {public Manifest} getManifest ()
Returns the Manifest for the jar file or null if there was no Manifest.
@end deftypemethod
@deftypemethod JarInputStream {public ZipEntry} getNextEntry () @*throws IOException
Returns the next entry or null when there are no more entries.
Does actually return a JarEntry, if you don't want to cast it yourself
use @code{getNextJarEntry()}. Does not return any entries found
at the beginning of the ZipFile that are special
(those that start with "META-INF/").
@end deftypemethod
@deftypemethod JarInputStream {public JarEntry} getNextJarEntry () @*throws IOException
Returns the next jar entry or null when there are no more entries.
@end deftypemethod
@deftypemethod JarInputStream {public int} read (byte[]@w{ }@var{buf}, int@w{ }@var{off}, int@w{ }@var{len}) @*throws IOException
XXX
@end deftypemethod
@deftypemethod JarOutputStream {public void} putNextEntry (java.util.zip.ZipEntry@w{ }@var{entry}) @*throws IOException
Prepares the JarOutputStream for writing the next entry.
This implementation just calls @code{super.putNextEntre()}.
@end deftypemethod
@deftypemethod Manifest {public Attributes} getMainAttributes ()
Gets the main attributes of this Manifest.
@end deftypemethod
@deftypemethod Manifest {public Map} getEntries ()
Gets a map of entry Strings to Attributes for all the entries described
in this manifest. Adding, changing or removing from this entries map
changes the entries of this manifest.
@end deftypemethod
@deftypemethod Manifest {public Attributes} getAttributes (java.lang.String@w{ }@var{entryName})
Returns the Attributes associated with the Entry.
Implemented as:
@code{return (Attributes)getEntries().get(entryName)}
@end deftypemethod
@deftypemethod Manifest {public void} clear ()
Clears the main attributes and removes all the entries from the
manifest.
@end deftypemethod
@deftypemethod Manifest {public void} read (java.io.InputStream@w{ }@var{in}) @*throws IOException
XXX
@end deftypemethod
@deftypemethod Manifest {public void} write (java.io.OutputStream@w{ }@var{out}) @*throws IOException
XXX
@end deftypemethod
@deftypemethod Manifest {public Object} clone ()
Makes a deep copy of the main attributes, but a shallow copy of
the other entries. This means that you can freely add, change or remove
the main attributes or the entries of the new manifest without effecting
the original manifest, but adding, changing or removing attributes from
a particular entry also changes the attributes of that entry in the
original manifest. Calls @code{new Manifest(this)}.
@end deftypemethod
@deftypemethod Manifest {public boolean} equals (java.lang.Object@w{ }@var{o})
Checks if another object is equal to this Manifest object.
Another Object is equal to this Manifest object if it is an instance of
Manifest and the main attributes and the entries of the other manifest
are equal to this one.
@end deftypemethod
@deftypemethod Manifest {public int} hashCode ()
Calculates the hash code of the manifest. Implemented by a xor of the
hash code of the main attributes with the hash code of the entries map.
@end deftypemethod
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment