2005-05-06 Michael Koch <konqueror@gmx.de>
* java/awt/BufferCapabilities.java (BufferCapabilities): Merged javadoc. From-SVN: r99304
This commit is contained in:
parent
cb881fb176
commit
8e111a2b7e
2 changed files with 16 additions and 11 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2005-05-06 Michael Koch <konqueror@gmx.de>
|
||||||
|
|
||||||
|
* java/awt/BufferCapabilities.java
|
||||||
|
(BufferCapabilities): Merged javadoc.
|
||||||
|
|
||||||
2005-05-06 Michael Koch <konqueror@gmx.de>
|
2005-05-06 Michael Koch <konqueror@gmx.de>
|
||||||
|
|
||||||
* java/util/Locale.java
|
* java/util/Locale.java
|
||||||
|
|
|
@ -132,23 +132,23 @@ public class BufferCapabilities implements Cloneable
|
||||||
/**
|
/**
|
||||||
* Creates a buffer capabilities object.
|
* Creates a buffer capabilities object.
|
||||||
*
|
*
|
||||||
* @param frontCaps front buffer capabilities descriptor
|
* @param front front buffer capabilities descriptor
|
||||||
* @param backCaps back buffer capabilities descriptor
|
* @param back back buffer capabilities descriptor
|
||||||
* @param flipContents the results of a flip operation or null if
|
* @param flip the results of a flip operation or null if
|
||||||
* flipping is not supported
|
* flipping is not supported
|
||||||
*
|
*
|
||||||
* @exception IllegalArgumentException if frontCaps or backCaps is
|
* @exception IllegalArgumentException if front or back is
|
||||||
* null
|
* null
|
||||||
*/
|
*/
|
||||||
public BufferCapabilities(ImageCapabilities frontCaps,
|
public BufferCapabilities(ImageCapabilities front,
|
||||||
ImageCapabilities backCaps,
|
ImageCapabilities back,
|
||||||
FlipContents flipContents)
|
FlipContents flip)
|
||||||
{
|
{
|
||||||
if (frontCaps == null || backCaps == null)
|
if (front == null || back == null)
|
||||||
throw new IllegalArgumentException();
|
throw new IllegalArgumentException();
|
||||||
this.front = frontCaps;
|
this.front = front;
|
||||||
this.back = backCaps;
|
this.back = back;
|
||||||
this.flip = flipContents;
|
this.flip = flip;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue