home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Computer Shopper 121
/
Computer Shopper 121
/
Computer Shopper 121.iso
/
Internet
/
Demon
/
IEXPLORE
/
IEAKJAVA.EXE
/
CLASSR.EXE
/
java
/
awt
/
Dimension.class
(
.txt
)
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Class File
|
1997-01-31
|
863 b
|
24 lines
package java.awt;
public class Dimension {
public int width;
public int height;
public Dimension() {
this(0, 0);
}
public Dimension(Dimension var1) {
this(var1.width, var1.height);
}
public Dimension(int var1, int var2) {
this.width = var1;
this.height = var2;
}
public String toString() {
return this.getClass().getName() + "[width=" + this.width + ",height=" + this.height + "]";
}
}