home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Professionell 2005 June
/
PCpro_2005_06.ISO
/
files
/
opensource
/
tvbrowser
/
TvBrowser_1.0.exe
/
plugins
/
PrintPlugin.jar
/
printplugin
/
DefaultColumnModel.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
|
2004-09-19
|
618 b
|
18 lines
package printplugin;
import devplugin.Program;
public class DefaultColumnModel extends AbstractColumnModel {
private String mTitle;
private Program[] mPrograms;
public DefaultColumnModel(String title, Program[] progs) {
super(progs);
this.mTitle = title;
}
public String getTitle() {
return this.mTitle;
}
}