home *** CD-ROM | disk | FTP | other *** search
- class OCmsltree extends OCmsl {
- OCmsltree(APInfo var1) {
- super.apinfo = var1;
- }
-
- public void initSpecifics() {
- super.max_string_width = 0;
- boolean var2 = false;
- super.num_descrips = super.spe_pv.size();
- super.m_desc = new String[super.num_descrips];
-
- for(int var3 = 0; var3 < super.num_descrips; ++var3) {
- String var1 = ((OCdg)this).getParameterSpecific("subdesc", var3);
- if (var1 != null) {
- super.m_desc[var3] = var1;
- if (super.fm.stringWidth(super.m_desc[var3]) + super.m_xoffset * 2 > super.max_string_width) {
- super.max_string_width = super.fm.stringWidth(super.m_desc[var3]) + super.m_xoffset * 2;
- }
- } else {
- super.m_desc[var3] = " ";
- }
- }
-
- }
- }
-