home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
U.S. Robotics Connections 5
/
CONNECTIONS.iso
/
content
/
software
/
office
/
hotoffic
/
optional
/
java_upd.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-05-08
|
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 + "]";
}
}