home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 June / CHIPHEFT062001.ISO / browser / nc32lyc / comm.z / java40.jar / netscape / security / UserDialogHelper.class (.txt) < prev    next >
Encoding:
Java Class File  |  2000-08-15  |  28.1 KB  |  1,143 lines

  1. package netscape.security;
  2.  
  3. import java.awt.Rectangle;
  4. import java.text.MessageFormat;
  5. import java.util.Locale;
  6. import java.util.ResourceBundle;
  7.  
  8. public class UserDialogHelper {
  9.    private static ResourceBundle resbundle = ResourceBundle.getBundle("UserDialogHelper", Locale.getDefault());
  10.    static final int LOW_RISK = 10;
  11.    static final int MEDIUM_RISK = 20;
  12.    static final int HIGH_RISK = 30;
  13.  
  14.    static String getUnsignedAppletStr() {
  15.       return resbundle.getString("Str1_UnsignedJavaAppletWindow");
  16.    }
  17.  
  18.    static String getSignedAppletStr(String var0) {
  19.       String var1 = new String(resbundle.getString("Str2_Signedby") + var0);
  20.       return var1;
  21.    }
  22.  
  23.    static String userDialogTitle() {
  24.       return resbundle.getString("Str3_JavaSecurity");
  25.    }
  26.  
  27.    static String userDialogTitleBold() {
  28.       return resbundle.getString("Str4_JSecurity");
  29.    }
  30.  
  31.    static String riskLabel(String var0) {
  32.       String var1 = resbundle.getString("Str5_Grantingthefollowingis");
  33.       String var2 = resbundle.getString("Str6_risk");
  34.       String var3 = new String(var1 + var0 + " " + var2);
  35.       return var3;
  36.    }
  37.  
  38.    static String dangerLabel() {
  39.       return resbundle.getString("Str7_Danger");
  40.    }
  41.  
  42.    static String dangerImage() {
  43.       return resbundle.getString("Str8_WarnGif");
  44.    }
  45.  
  46.    static String certImage() {
  47.       return resbundle.getString("Str9_CertGif");
  48.    }
  49.  
  50.    static String topImage() {
  51.       return resbundle.getString("Str10_TopGif");
  52.    }
  53.  
  54.    static String bottomImage() {
  55.       return resbundle.getString("Str11_BottomGif");
  56.    }
  57.  
  58.    static String leftImage() {
  59.       return resbundle.getString("Str12_LeftGif");
  60.    }
  61.  
  62.    static String rightImage() {
  63.       return resbundle.getString("Str13_RightGif");
  64.    }
  65.  
  66.    static String topleftImage() {
  67.       return resbundle.getString("Str14_TopLeftGif");
  68.    }
  69.  
  70.    static String toprightImage() {
  71.       return resbundle.getString("Str15_TopRightGif");
  72.    }
  73.  
  74.    static String bottomleftImage() {
  75.       return resbundle.getString("Str16_BottomLeftGif");
  76.    }
  77.  
  78.    static String bottomrightImage() {
  79.       return resbundle.getString("Str17_BottomRightGif");
  80.    }
  81.  
  82.    static String viewCertificateLabel() {
  83.       return resbundle.getString("Str18_Certificate");
  84.    }
  85.  
  86.    static String accessDetailsLabel() {
  87.       return resbundle.getString("Str19_Details");
  88.    }
  89.  
  90.    static String dialogHeadingCert(String var0) {
  91.       String var1 = resbundle.getString("Str20a_JavaScriptOrApplet");
  92.       String var2 = resbundle.getString("Str20b_AdditionalPrivileges");
  93.       String var3 = new String(var1 + var0 + " " + var2);
  94.       return var3;
  95.    }
  96.  
  97.    static String dialogHeadingCodebase(String var0) {
  98.       String var1 = resbundle.getString("Str21a_JavaScriptOrAppletFrom");
  99.       String var2 = resbundle.getString("Str21b_AdditionalPrivilegesUnsigned");
  100.       String var3 = new String(var1 + var0 + " " + var2);
  101.       return var3;
  102.    }
  103.  
  104.    static String privilegeQuestionCodebase(String var0) {
  105.       return resbundle.getString("Str22_GrantAccess");
  106.    }
  107.  
  108.    static String privilegeQuestionCert(String var0) {
  109.       return resbundle.getString("Str22_GrantAccess");
  110.    }
  111.  
  112.    static String yesPrivilegeCodebase(String var0) {
  113.       String var1 = resbundle.getString("Str23a_YesGrant");
  114.       String var2 = resbundle.getString("Str23b_thisSession");
  115.       String var3 = new String(var1 + var0 + " " + var2);
  116.       return var3;
  117.    }
  118.  
  119.    static String yesPrivilegeCert(String var0) {
  120.       String var1 = resbundle.getString("Str23a_YesGrant");
  121.       String var2 = resbundle.getString("Str23b_thisSession");
  122.       String var3 = new String(var1 + var0 + " " + var2);
  123.       return var3;
  124.    }
  125.  
  126.    static String noPrivilegeCodebase(String var0) {
  127.       return resbundle.getString("Str25_NoDeny");
  128.    }
  129.  
  130.    static String noPrivilegeCert(String var0) {
  131.       return resbundle.getString("Str25_NoDeny");
  132.    }
  133.  
  134.    static String rememberPrivilegeCodebase(String var0) {
  135.       Object[] var1 = new Object[]{var0};
  136.       return MessageFormat.format(resbundle.getString("Str26_RememberThisDecisionForAll"), var1);
  137.    }
  138.  
  139.    static String rememberPrivilegeCert(String var0) {
  140.       Object[] var1 = new Object[]{var0};
  141.       return MessageFormat.format(resbundle.getString("Str26_RememberThisDecisionForAll"), var1);
  142.    }
  143.  
  144.    static String rememberPrivilege() {
  145.       return resbundle.getString("Str27_RememberThisDecision");
  146.    }
  147.  
  148.    static String certIdentity(String var0) {
  149.       String var1 = resbundle.getString("Str28_IdentityVerified");
  150.       String var2 = resbundle.getString("Str178_BackSlash10Tag");
  151.       String var3 = new String(var1 + " " + var0 + var2);
  152.       return var3;
  153.    }
  154.  
  155.    static String userDialogGrant() {
  156.       String var0 = new String("  " + resbundle.getString("Str29_Grant") + "  ");
  157.       return var0;
  158.    }
  159.  
  160.    static String userDialogDeny() {
  161.       String var0 = new String("  " + resbundle.getString("Str30_Deny") + "  ");
  162.       return var0;
  163.    }
  164.  
  165.    static String userDialogOkay() {
  166.       String var0 = new String("  " + resbundle.getString("Str31_ok") + "  ");
  167.       return var0;
  168.    }
  169.  
  170.    static String userDialogHelp() {
  171.       String var0 = new String("  " + resbundle.getString("Str32_Help") + "  ");
  172.       return var0;
  173.    }
  174.  
  175.    static String userDialogClose() {
  176.       String var0 = new String("  " + resbundle.getString("Str33_Close") + "  ");
  177.       return var0;
  178.    }
  179.  
  180.    static int userDialogWidth() {
  181.       return 600;
  182.    }
  183.  
  184.    static int userDialogHeight() {
  185.       return 600;
  186.    }
  187.  
  188.    static String principalDetailTitle(String var0) {
  189.       Object[] var1 = new Object[]{var0};
  190.       return MessageFormat.format(resbundle.getString("Str34_CertificateFor"), var1);
  191.    }
  192.  
  193.    static String certHead1() {
  194.       return resbundle.getString("Str35_WasSignedWithCertificate");
  195.    }
  196.  
  197.    static String certCompanyNameCaption() {
  198.       return resbundle.getString("Str36_CertificateBelongsTo");
  199.    }
  200.  
  201.    static String certIssuedByCaption() {
  202.       return resbundle.getString("Str37_CertificateIssuedBy");
  203.    }
  204.  
  205.    static String certSerialNoCaption() {
  206.       return resbundle.getString("Str38_SerialNumber");
  207.    }
  208.  
  209.    static String certFingerprintCaption() {
  210.       return resbundle.getString("Str39_CertificateFingerPrint");
  211.    }
  212.  
  213.    static String certSerialNo(String var0) {
  214.       String var1 = resbundle.getString("Str38_SerialNumber");
  215.       String var2 = new String(var1 + " " + var0);
  216.       return var2;
  217.    }
  218.  
  219.    static String certFingerprint(String var0) {
  220.       String var1 = resbundle.getString("Str41_CertificateFingerPrint</b>");
  221.       String var2 = new String(var1 + " " + var0);
  222.       return var2;
  223.    }
  224.  
  225.    static String certExpiresCaption(String var0) {
  226.       String var1 = resbundle.getString("Str42_CertificateExpiresOn");
  227.       String var2 = new String(var1 + " " + var0);
  228.       return var2;
  229.    }
  230.  
  231.    static int principalDetailWidth() {
  232.       return 600;
  233.    }
  234.  
  235.    static int principalDetailHeight() {
  236.       return 900;
  237.    }
  238.  
  239.    static String principalUntrustedCodebase() {
  240.       return resbundle.getString("Str43_UntrustedURLCodebase");
  241.    }
  242.  
  243.    static String getUnsignedPrincipal() {
  244.       return resbundle.getString("Str44_UnsignedFromLocal");
  245.    }
  246.  
  247.    static String targetDetailDialogTitle() {
  248.       return resbundle.getString("Str45_TargetDetails");
  249.    }
  250.  
  251.    static String targetDialogHeading(String var0, String var1) {
  252.       String var2 = resbundle.getString("Str46a_IsA");
  253.       String var3 = resbundle.getString("Str46b_RiskAccess");
  254.       String var4 = resbundle.getString("Str179_BoldTag");
  255.       String var5 = new String(var4 + var0 + var2 + var1 + var3);
  256.       return var5;
  257.    }
  258.  
  259.    static String targetDialogCaption1() {
  260.       return resbundle.getString("Str47_ConsistsOf");
  261.    }
  262.  
  263.    static String targetDetailDialogDescription() {
  264.       return resbundle.getString("Str48_Description");
  265.    }
  266.  
  267.    static int targetDetailWidth() {
  268.       return 600;
  269.    }
  270.  
  271.    static int targetDetailHeight() {
  272.       return 900;
  273.    }
  274.  
  275.    static String userDialogDetailsLabel() {
  276.       return resbundle.getString("Str49_ObjectName");
  277.    }
  278.  
  279.    static String userDialogHelpUrl() {
  280.       return resbundle.getString("Str50_LocationReplace");
  281.    }
  282.  
  283.    static int userDialogMinFontSize() {
  284.       return 10;
  285.    }
  286.  
  287.    static int userDialogMaxFontSize() {
  288.       return 20;
  289.    }
  290.  
  291.    static String userDialogInitialFontName() {
  292.       return resbundle.getString("Str51_TimesRoman");
  293.    }
  294.  
  295.    static int userDialogInitialFontSize() {
  296.       return 14;
  297.    }
  298.  
  299.    static Rectangle MainSecurityDialogSize() {
  300.       return new Rectangle(2, 2, 490, 350);
  301.    }
  302.  
  303.    static Rectangle CertificateDialogSize() {
  304.       return new Rectangle(10, 10, 580, 400);
  305.    }
  306.  
  307.    static Rectangle DetailsDialogSize() {
  308.       return new Rectangle(5, 5, 490, 375);
  309.    }
  310.  
  311.    static Rectangle HelpDialogSize() {
  312.       return new Rectangle(20, 20, 550, 400);
  313.    }
  314.  
  315.    public static final String targetRiskStr(int var0) {
  316.       if (var0 <= 10) {
  317.          return resbundle.getString("Str52_Low");
  318.       } else {
  319.          return var0 <= 20 ? resbundle.getString("Str53_Medium") : resbundle.getString("Str54_High");
  320.       }
  321.    }
  322.  
  323.    public static final int targetRiskLow() {
  324.       return 10;
  325.    }
  326.  
  327.    public static final String targetRiskColorLow() {
  328.       return resbundle.getString("Str55_Colour1");
  329.    }
  330.  
  331.    public static final int targetRiskMedium() {
  332.       return 20;
  333.    }
  334.  
  335.    public static final String targetRiskColorMedium() {
  336.       return resbundle.getString("Str56_Colour2");
  337.    }
  338.  
  339.    public static final int targetRiskHigh() {
  340.       return 30;
  341.    }
  342.  
  343.    public static final String targetRiskColorHigh() {
  344.       return resbundle.getString("Str57_Colour3");
  345.    }
  346.  
  347.    static String getTargetHelpUrl() {
  348.       return resbundle.getString("Str58_HandBookUrl");
  349.    }
  350.  
  351.    static String targetDesc_ThreadAccess() {
  352.       return resbundle.getString("Str59_ManipulatingApplets");
  353.    }
  354.  
  355.    static String targetDetailDesc_ThreadAccess() {
  356.       return resbundle.getString("Str59_ManipulatingApplets");
  357.    }
  358.  
  359.    static String targetUrl_ThreadAccess() {
  360.       return getTargetHelpUrl() + "#ThreadAccess";
  361.    }
  362.  
  363.    static String targetDesc_ThreadGroupAccess() {
  364.       return resbundle.getString("Str60_ManipulatingGroups");
  365.    }
  366.  
  367.    static String targetDetailDesc_ThreadGroupAccess() {
  368.       return resbundle.getString("Str60_ManipulatingGroups");
  369.    }
  370.  
  371.    static String targetUrl_ThreadGroupAccess() {
  372.       return getTargetHelpUrl() + "#ThreadGroupAccess";
  373.    }
  374.  
  375.    static String targetDesc_ExecAccess() {
  376.       return resbundle.getString("Str61_StartingPrograms");
  377.    }
  378.  
  379.    static String targetDetailDesc_ExecAccess() {
  380.       return resbundle.getString("Str62_StartingProgramsDesc");
  381.    }
  382.  
  383.    static String targetUrl_ExecAccess() {
  384.       return getTargetHelpUrl() + "#ExecAccess";
  385.    }
  386.  
  387.    static String targetDesc_ExitAccess() {
  388.       return resbundle.getString("Str63_ExitingCommunicator");
  389.    }
  390.  
  391.    static String targetDetailDesc_ExitAccess() {
  392.       return resbundle.getString("Str64_ExitingCommunicatorDesc");
  393.    }
  394.  
  395.    static String targetUrl_ExitAccess() {
  396.       return getTargetHelpUrl() + "#ExitAccess";
  397.    }
  398.  
  399.    static String targetDesc_LinkAccess() {
  400.       return resbundle.getString("Str65_UsingNativeCode");
  401.    }
  402.  
  403.    static String targetDetailDesc_LinkAccess() {
  404.       return resbundle.getString("Str66_UsingNativeCodeDesc");
  405.    }
  406.  
  407.    static String targetUrl_LinkAccess() {
  408.       return getTargetHelpUrl() + "#LinkAccess";
  409.    }
  410.  
  411.    static String targetDesc_PropertyWrite() {
  412.       return resbundle.getString("Str67_ModifyingInformation");
  413.    }
  414.  
  415.    static String targetDetailDesc_PropertyWrite() {
  416.       return resbundle.getString("Str68_ModifyingInformationDesc");
  417.    }
  418.  
  419.    static String targetUrl_PropertyWrite() {
  420.       return getTargetHelpUrl() + "#PropertyWrite";
  421.    }
  422.  
  423.    static String targetDesc_PropertyRead() {
  424.       return resbundle.getString("Str69_ReadingInformation");
  425.    }
  426.  
  427.    static String targetDetailDesc_PropertyRead() {
  428.       return resbundle.getString("Str70_ReadingInformationDesc");
  429.    }
  430.  
  431.    static String targetUrl_PropertyRead() {
  432.       return getTargetHelpUrl() + "#PropertyRead";
  433.    }
  434.  
  435.    static String targetDesc_FileRead() {
  436.       return resbundle.getString("Str71_ReadingFiles");
  437.    }
  438.  
  439.    static String targetDetailDesc_FileRead() {
  440.       return resbundle.getString("Str72_ReadingFilesDesc");
  441.    }
  442.  
  443.    static String targetUrl_FileRead() {
  444.       return getTargetHelpUrl() + "#FileRead";
  445.    }
  446.  
  447.    static String targetDesc_FileWrite() {
  448.       return resbundle.getString("Str73_ModifyingFiles");
  449.    }
  450.  
  451.    static String targetDetailDesc_FileWrite() {
  452.       return resbundle.getString("Str74_ModifyingFilesDesc");
  453.    }
  454.  
  455.    static String targetUrl_FileWrite() {
  456.       return getTargetHelpUrl() + "#FileWrite";
  457.    }
  458.  
  459.    static String targetDesc_FileDelete() {
  460.       return resbundle.getString("Str75_DeletingFiles");
  461.    }
  462.  
  463.    static String targetDetailDesc_FileDelete() {
  464.       return resbundle.getString("Str76_DeletingFilesDesc");
  465.    }
  466.  
  467.    static String targetUrl_FileDelete() {
  468.       return getTargetHelpUrl() + "#FileDelete";
  469.    }
  470.  
  471.    static String targetDesc_FdRead() {
  472.       return resbundle.getString("Str77_ReadingNetworkConnection");
  473.    }
  474.  
  475.    static String targetDetailDesc_FdRead() {
  476.       return resbundle.getString("Str78_ReadingNetworkConnectionDesc");
  477.    }
  478.  
  479.    static String targetUrl_FdRead() {
  480.       return getTargetHelpUrl() + "#FdRead";
  481.    }
  482.  
  483.    static String targetDesc_FdWrite() {
  484.       return resbundle.getString("Str79_WritingNetworkConnection");
  485.    }
  486.  
  487.    static String targetDetailDesc_FdWrite() {
  488.       return resbundle.getString("Str80_WritingNetworkConnectionDesc");
  489.    }
  490.  
  491.    static String targetUrl_FdWrite() {
  492.       return getTargetHelpUrl() + "#FdWrite";
  493.    }
  494.  
  495.    static String targetDesc_Listen() {
  496.       return resbundle.getString("Str81_AcceptNetworkConnection");
  497.    }
  498.  
  499.    static String targetDetailDesc_Listen() {
  500.       return resbundle.getString("Str82_AcceptNetworkConnectionDesc");
  501.    }
  502.  
  503.    static String targetUrl_Listen() {
  504.       return getTargetHelpUrl() + "#Listen";
  505.    }
  506.  
  507.    static String targetDesc_Accept() {
  508.       return resbundle.getString("Str81_AcceptNetworkConnection");
  509.    }
  510.  
  511.    static String targetDetailDesc_Accept() {
  512.       return resbundle.getString("Str81_AcceptNetworkConnection");
  513.    }
  514.  
  515.    static String targetUrl_Accept() {
  516.       return getTargetHelpUrl() + "#Accept";
  517.    }
  518.  
  519.    static String targetDesc_Connect() {
  520.       return resbundle.getString("Str82_AcceptNetworkConnectionDesc");
  521.    }
  522.  
  523.    static String targetDetailDesc_Connect() {
  524.       return resbundle.getString("Str82_AcceptNetworkConnectionDesc");
  525.    }
  526.  
  527.    static String targetUrl_Connect() {
  528.       return getTargetHelpUrl() + "#Connect";
  529.    }
  530.  
  531.    static String targetDesc_Redirect() {
  532.       return resbundle.getString("Str83_AllowRemoteRedirection");
  533.    }
  534.  
  535.    static String targetDetailDesc_Redirect() {
  536.       return resbundle.getString("Str83_AllowRemoteRedirection");
  537.    }
  538.  
  539.    static String targetUrl_Redirect() {
  540.       return getTargetHelpUrl() + "#Redirect";
  541.    }
  542.  
  543.    static String targetDesc_ClientAuth() {
  544.       return resbundle.getString("Str84_AuthenticateSSL");
  545.    }
  546.  
  547.    static String targetDetailDesc_ClientAuth() {
  548.       return resbundle.getString("Str85_AuthenticateSSLDesc");
  549.    }
  550.  
  551.    static String targetUrl_ClientAuth() {
  552.       return getTargetHelpUrl() + "#ClientAuth";
  553.    }
  554.  
  555.    static String targetDesc_ConnectWithRedirect() {
  556.       return resbundle.getString("Str86_ContactNetwork");
  557.    }
  558.  
  559.    static String targetDetailDesc_ConnectWithRedirect() {
  560.       return resbundle.getString("Str87_ContactNetworkDesc");
  561.    }
  562.  
  563.    static String targetUrl_ConnectWithRedirect() {
  564.       return getTargetHelpUrl() + "#ConnectWithRedirect";
  565.    }
  566.  
  567.    static String targetDesc_Multicast() {
  568.       return resbundle.getString("Str89_BroadcastingNetwork");
  569.    }
  570.  
  571.    static String targetDetailDesc_Multicast() {
  572.       return resbundle.getString("Str89_BroadcastingNetwork");
  573.    }
  574.  
  575.    static String targetUrl_Multicast() {
  576.       return getTargetHelpUrl() + "#Multicast";
  577.    }
  578.  
  579.    static String targetDesc_TopLevelWindow() {
  580.       return resbundle.getString("Str90_DisplayUnsigned");
  581.    }
  582.  
  583.    static String targetDetailDesc_TopLevelWindow() {
  584.       return resbundle.getString("Str90_DisplayUnsigned");
  585.    }
  586.  
  587.    static String targetUrl_TopLevelWindow() {
  588.       return getTargetHelpUrl() + "#TopLevelWindow";
  589.    }
  590.  
  591.    static String targetDesc_DialogModality() {
  592.       return resbundle.getString("Str100_DisplayModal");
  593.    }
  594.  
  595.    static String targetDetailDesc_DialogModality() {
  596.       return resbundle.getString("Str101_DisplayModalDesc");
  597.    }
  598.  
  599.    static String targetUrl_DialogModality() {
  600.       return getTargetHelpUrl() + "#DialogModality";
  601.    }
  602.  
  603.    static String targetDesc_PackageAccess() {
  604.       return resbundle.getString("Str102_RestrictedJava");
  605.    }
  606.  
  607.    static String targetDetailDesc_PackageAccess() {
  608.       return resbundle.getString("Str102_RestrictedJava");
  609.    }
  610.  
  611.    static String targetUrl_PackageAccess() {
  612.       return getTargetHelpUrl() + "#PackageAccess";
  613.    }
  614.  
  615.    static String targetDesc_PackageDefinition() {
  616.       return resbundle.getString("Str103_LoadingRestrictedJava");
  617.    }
  618.  
  619.    static String targetDetailDesc_PackageDefinition() {
  620.       return resbundle.getString("Str103_LoadingRestrictedJava");
  621.    }
  622.  
  623.    static String targetUrl_PackageDefinition() {
  624.       return getTargetHelpUrl() + "#PackageDefinition";
  625.    }
  626.  
  627.    static String targetDesc_SetFactory() {
  628.       return resbundle.getString("Str104_DefiningProtocolHandlers");
  629.    }
  630.  
  631.    static String targetDetailDesc_SetFactory() {
  632.       return resbundle.getString("Str104_DefiningProtocolHandlers");
  633.    }
  634.  
  635.    static String targetUrl_SetFactory() {
  636.       return getTargetHelpUrl() + "#SetFactory";
  637.    }
  638.  
  639.    static String targetDesc_MemberAccess() {
  640.       return resbundle.getString("Str105_ExamineJavaCode");
  641.    }
  642.  
  643.    static String targetDetailDesc_MemberAccess() {
  644.       return resbundle.getString("Str105_ExamineJavaCode");
  645.    }
  646.  
  647.    static String targetUrl_MemberAccess() {
  648.       return getTargetHelpUrl() + "#MemberAccess";
  649.    }
  650.  
  651.    static String targetDesc_PrintJobAccess() {
  652.       return resbundle.getString("Str106_PrintingWithin");
  653.    }
  654.  
  655.    static String targetDetailDesc_PrintJobAccess() {
  656.       return resbundle.getString("Str106_PrintingWithin");
  657.    }
  658.  
  659.    static String targetUrl_PrintJobAccess() {
  660.       return getTargetHelpUrl() + "#PrintJobAccess";
  661.    }
  662.  
  663.    static String targetDesc_SystemClipboardAccess() {
  664.       return resbundle.getString("Str107_ClipboardAccess");
  665.    }
  666.  
  667.    static String targetDetailDesc_SystemClipboardAccess() {
  668.       return resbundle.getString("Str107_ClipboardAccess");
  669.    }
  670.  
  671.    static String targetUrl_SystemClipboardAccess() {
  672.       return getTargetHelpUrl() + "#SystemClipboardAccess";
  673.    }
  674.  
  675.    static String targetDesc_AwtEventQueueAccess() {
  676.       return resbundle.getString("Str108_MonitoringMouse");
  677.    }
  678.  
  679.    static String targetDetailDesc_AwtEventQueueAccess() {
  680.       return resbundle.getString("Str108_MonitoringMouse");
  681.    }
  682.  
  683.    static String targetUrl_AwtEventQueueAccess() {
  684.       return getTargetHelpUrl() + "#AwtEventQueueAccess";
  685.    }
  686.  
  687.    static String targetDesc_SecurityProvider() {
  688.       return resbundle.getString("Str109_AccessToSecurity");
  689.    }
  690.  
  691.    static String targetDetailDesc_SecurityProvider() {
  692.       return resbundle.getString("Str109_AccessToSecurity");
  693.    }
  694.  
  695.    static String targetUrl_SecurityProvider() {
  696.       return getTargetHelpUrl() + "#SecurityProvider";
  697.    }
  698.  
  699.    static String targetDesc_CreateSecurityManager() {
  700.       return resbundle.getString("Str110_CreatePolices");
  701.    }
  702.  
  703.    static String targetDetailDesc_CreateSecurityManager() {
  704.       return resbundle.getString("Str110_CreatePolices");
  705.    }
  706.  
  707.    static String targetUrl_CreateSecurityManager() {
  708.       return getTargetHelpUrl() + "#CreateSecurityManager";
  709.    }
  710.  
  711.    static String targetDesc_Impersonator() {
  712.       return resbundle.getString("Str111_ImpersonateApplication");
  713.    }
  714.  
  715.    static String targetDetailDesc_Impersonator() {
  716.       return resbundle.getString("Str111_ImpersonateApplication");
  717.    }
  718.  
  719.    static String targetUrl_Impersonator() {
  720.       return getTargetHelpUrl() + "#Impersonator";
  721.    }
  722.  
  723.    static String targetDesc_BrowserRead() {
  724.       return resbundle.getString("Str112_AccessBrowserData");
  725.    }
  726.  
  727.    static String targetDetailDesc_BrowserRead() {
  728.       return resbundle.getString("Str113_AccessBrowserDataDesc");
  729.    }
  730.  
  731.    static String targetUrl_BrowserRead() {
  732.       return getTargetHelpUrl() + "#BrowserRead";
  733.    }
  734.  
  735.    static String targetDesc_BrowserWrite() {
  736.       return resbundle.getString("Str114_ModifyBrowser");
  737.    }
  738.  
  739.    static String targetDetailDesc_BrowserWrite() {
  740.       return resbundle.getString("Str115_ModifyBrowserDesc");
  741.    }
  742.  
  743.    static String targetUrl_BrowserWrite() {
  744.       return getTargetHelpUrl() + "#BrowserWrite";
  745.    }
  746.  
  747.    static String targetDesc_BrowserAccess() {
  748.       return resbundle.getString("Str115_ModifyBrowserDesc");
  749.    }
  750.  
  751.    static String targetDetailDesc_BrowserAccess() {
  752.       return resbundle.getString("Str117_ReadWriteBrowserDataDesc");
  753.    }
  754.  
  755.    static String targetUrl_BrowserAccess() {
  756.       return getTargetHelpUrl() + "#BrowserAccess";
  757.    }
  758.  
  759.    static String targetDesc_PrefsRead() {
  760.       return resbundle.getString("Str118_ReadingPreferences");
  761.    }
  762.  
  763.    static String targetDetailDesc_PrefsRead() {
  764.       return resbundle.getString("Str119_ReadingPreferencesDesc");
  765.    }
  766.  
  767.    static String targetUrl_PrefsRead() {
  768.       return getTargetHelpUrl() + "#PrefsRead";
  769.    }
  770.  
  771.    static String targetDesc_PrefsWrite() {
  772.       return resbundle.getString("Str120_ModifyPreferences");
  773.    }
  774.  
  775.    static String targetDetailDesc_PrefsWrite() {
  776.       return resbundle.getString("Str121_ModifyPreferencesDesc");
  777.    }
  778.  
  779.    static String targetUrl_PrefsWrite() {
  780.       return getTargetHelpUrl() + "#PrefsWrite";
  781.    }
  782.  
  783.    static String targetDesc_SendMail() {
  784.       return resbundle.getString("Str122_SendMail");
  785.    }
  786.  
  787.    static String targetDetailDesc_SendMail() {
  788.       return resbundle.getString("Str122_SendMail");
  789.    }
  790.  
  791.    static String targetUrl_SendMail() {
  792.       return getTargetHelpUrl() + "#SendMail";
  793.    }
  794.  
  795.    static String targetDesc_RegPrivate() {
  796.       return resbundle.getString("Str123_VendorRegistry");
  797.    }
  798.  
  799.    static String targetDetailDesc_RegPrivate() {
  800.       return resbundle.getString("Str124_VendorRegistryDesc");
  801.    }
  802.  
  803.    static String targetUrl_RegPrivate() {
  804.       return getTargetHelpUrl() + "#RegPrivate";
  805.    }
  806.  
  807.    static String targetDesc_RegStandard() {
  808.       return resbundle.getString("Str125_SharedRegistry");
  809.    }
  810.  
  811.    static String targetDetailDesc_RegStandard() {
  812.       return resbundle.getString("Str126_SharedRegistryDesc");
  813.    }
  814.  
  815.    static String targetUrl_RegStandard() {
  816.       return getTargetHelpUrl() + "#RegStandard";
  817.    }
  818.  
  819.    static String targetDesc_RegAdmin() {
  820.       return resbundle.getString("Str127_AnyPartRegistry");
  821.    }
  822.  
  823.    static String targetDetailDesc_RegAdmin() {
  824.       return resbundle.getString("Str128_AnyPartRegistryDesc");
  825.    }
  826.  
  827.    static String targetUrl_RegAdmin() {
  828.       return getTargetHelpUrl() + "#RegAdmin";
  829.    }
  830.  
  831.    static String targetDesc_SoftwareInstall() {
  832.       return resbundle.getString("Str131_Installing");
  833.    }
  834.  
  835.    static String targetDetailDesc_SoftwareInstall() {
  836.       return resbundle.getString("Str132_InstallingDesc");
  837.    }
  838.  
  839.    static String targetUrl_SoftwareInstall() {
  840.       return getTargetHelpUrl() + "#SoftwareInstall";
  841.    }
  842.  
  843.    static String targetDesc_SilentInstall() {
  844.       return resbundle.getString("Str133_InstallRun");
  845.    }
  846.  
  847.    static String targetDetailDesc_SilentInstall() {
  848.       return resbundle.getString("Str134_InstallRunDesc");
  849.    }
  850.  
  851.    static String targetUrl_SilentInstall() {
  852.       return getTargetHelpUrl() + "#SilentInstall";
  853.    }
  854.  
  855.    static String targetDesc_SuperUser() {
  856.       return resbundle.getString("Str135_SuperPrivilages");
  857.    }
  858.  
  859.    static String targetDetailDesc_SuperUser() {
  860.       return resbundle.getString("Str135_SuperPrivilages");
  861.    }
  862.  
  863.    static String targetUrl_SuperUser() {
  864.       return getTargetHelpUrl() + "#SuperUser";
  865.    }
  866.  
  867.    static String targetDesc_30Capabilities() {
  868.       return resbundle.getString("Str136_PluginAccess");
  869.    }
  870.  
  871.    static String targetDetailDesc_30Capabilities() {
  872.       return resbundle.getString("Str137_PluginAccessDesc");
  873.    }
  874.  
  875.    static String targetUrl_30Capabilities() {
  876.       return getTargetHelpUrl() + "#30Capabilities";
  877.    }
  878.  
  879.    static String targetDesc_SAR() {
  880.       return resbundle.getString("Str138_SiteArchiveAccess");
  881.    }
  882.  
  883.    static String targetDetailDesc_SAR() {
  884.       return resbundle.getString("Str139_SiteArchiveAccessDesc");
  885.    }
  886.  
  887.    static String targetUrl_SAR() {
  888.       return getTargetHelpUrl() + "#SiteArchive";
  889.    }
  890.  
  891.    static String targetDesc_Constellation() {
  892.       return resbundle.getString("Str140_NetcastingAccess");
  893.    }
  894.  
  895.    static String targetDetailDesc_Constellation() {
  896.       return resbundle.getString("Str141_NetcastingAccessDesc");
  897.    }
  898.  
  899.    static String targetUrl_Constellation() {
  900.       return getTargetHelpUrl() + "#Netcaster";
  901.    }
  902.  
  903.    static String targetDesc_Marimba() {
  904.       return resbundle.getString("Str142_MarimbaAccess");
  905.    }
  906.  
  907.    static String targetDetailDesc_Marimba() {
  908.       return resbundle.getString("Str143_MarimbaAccessDesc");
  909.    }
  910.  
  911.    static String targetUrl_Marimba() {
  912.       return getTargetHelpUrl() + "#Marimba";
  913.    }
  914.  
  915.    static String targetDesc_IIOP() {
  916.       return resbundle.getString("Str144_IIOP");
  917.    }
  918.  
  919.    static String targetDetailDesc_IIOP() {
  920.       return resbundle.getString("Str145_IIOPDesc");
  921.    }
  922.  
  923.    static String targetUrl_IIOP() {
  924.       return getTargetHelpUrl() + "#IIOP";
  925.    }
  926.  
  927.    static String targetDesc_CodebaseEnv() {
  928.       return resbundle.getString("Str146_CodebaseProperties");
  929.    }
  930.  
  931.    static String targetDetailDesc_CodebaseEnv() {
  932.       return resbundle.getString("Str147_CodebasePropertiesDesc");
  933.    }
  934.  
  935.    static String targetUrl_CodebaseEnv() {
  936.       return getTargetHelpUrl() + "#CodebaseEnv";
  937.    }
  938.  
  939.    static String targetDesc_Debugger() {
  940.       return resbundle.getString("Str148_DebuggerAccess");
  941.    }
  942.  
  943.    static String targetDetailDesc_Debugger() {
  944.       return resbundle.getString("Str149_DebuggerAccessDesc");
  945.    }
  946.  
  947.    static String targetUrl_Debugger() {
  948.       return getTargetHelpUrl() + "#Debugger";
  949.    }
  950.  
  951.    static String targetDesc_CanvasAccess() {
  952.       return resbundle.getString("Str150_ScreenAccess");
  953.    }
  954.  
  955.    static String targetDetailDesc_CanvasAccess() {
  956.       return resbundle.getString("Str151_ScreenAccessDesc");
  957.    }
  958.  
  959.    static String targetUrl_CanvasAccess() {
  960.       return getTargetHelpUrl() + "#CanvasAccess";
  961.    }
  962.  
  963.    static String targetDesc_FileAccess() {
  964.       return resbundle.getString("Str152_FullLocalAccess");
  965.    }
  966.  
  967.    static String targetDetailDesc_FileAccess() {
  968.       return resbundle.getString("Str153_FullLocalAccessDesc");
  969.    }
  970.  
  971.    static String targetUrl_FileAccess() {
  972.       return getTargetHelpUrl() + "#FileAccess";
  973.    }
  974.  
  975.    static String targetDesc_LimitedFileAccess() {
  976.       return resbundle.getString("Str154_LimitedLocalAccess");
  977.    }
  978.  
  979.    static String targetDetailDesc_LimitedFileAccess() {
  980.       return resbundle.getString("Str155_LimitedLocalAccessDesc");
  981.    }
  982.  
  983.    static String targetUrl_LimitedFileAccess() {
  984.       return getTargetHelpUrl() + "#LimitedFileAccess";
  985.    }
  986.  
  987.    static String targetDesc_CookieAccess() {
  988.       return resbundle.getString("Str156_CookieAccess");
  989.    }
  990.  
  991.    static String targetDetailDesc_CookieAccess() {
  992.       return resbundle.getString("Str157_CookieAccessDesc");
  993.    }
  994.  
  995.    static String targetUrl_CookieAccess() {
  996.       return getTargetHelpUrl() + "#CookieAccess";
  997.    }
  998.  
  999.    static String targetDesc_SignonAccess() {
  1000.       return resbundle.getString("Str158_SignOnAccess");
  1001.    }
  1002.  
  1003.    static String targetDetailDesc_SignonAccess() {
  1004.       return resbundle.getString("Str159_SignOnAccessDesc");
  1005.    }
  1006.  
  1007.    static String targetUrl_SignonAccess() {
  1008.       return getTargetHelpUrl() + "#SignonAccess";
  1009.    }
  1010.  
  1011.    static String targetDesc_GamesAccess() {
  1012.       return resbundle.getString("Str160_LimitedRegistryAccess");
  1013.    }
  1014.  
  1015.    static String targetDetailDesc_GamesAccess() {
  1016.       return resbundle.getString("Str161_LimitedRegistryAccessDesc");
  1017.    }
  1018.  
  1019.    static String targetUrl_GamesAccess() {
  1020.       return getTargetHelpUrl() + "#GamesAccess";
  1021.    }
  1022.  
  1023.    static String targetDesc_WordProcessorAccess() {
  1024.       return resbundle.getString("Str162_WordProcessAccess");
  1025.    }
  1026.  
  1027.    static String targetDetailDesc_WordProcessorAccess() {
  1028.       return resbundle.getString("Str163_WordProcessAccessDesc");
  1029.    }
  1030.  
  1031.    static String targetUrl_WordProcessorAccess() {
  1032.       return getTargetHelpUrl() + "#WordProcessorAccess";
  1033.    }
  1034.  
  1035.    static String targetDesc_SpreadsheetAccess() {
  1036.       return resbundle.getString("Str164_SpreadSheetAccess");
  1037.    }
  1038.  
  1039.    static String targetDetailDesc_SpreadsheetAccess() {
  1040.       return resbundle.getString("Str165_SpreadSheetAccessDesc");
  1041.    }
  1042.  
  1043.    static String targetUrl_SpreadsheetAccess() {
  1044.       return getTargetHelpUrl() + "#SpreadsheetAccess";
  1045.    }
  1046.  
  1047.    static String targetDesc_PresentationAccess() {
  1048.       return resbundle.getString("Str166_PresentationAccess");
  1049.    }
  1050.  
  1051.    static String targetDetailDesc_PresentationAccess() {
  1052.       return resbundle.getString("Str167_PresentationAccessDesc");
  1053.    }
  1054.  
  1055.    static String targetUrl_PresentationAccess() {
  1056.       return getTargetHelpUrl() + "#PresentationAccess";
  1057.    }
  1058.  
  1059.    static String targetDesc_DatabaseAccess() {
  1060.       return resbundle.getString("Str168_DatabaseAccess");
  1061.    }
  1062.  
  1063.    static String targetDetailDesc_DatabaseAccess() {
  1064.       return resbundle.getString("Str169_DatabaseAccessDesc");
  1065.    }
  1066.  
  1067.    static String targetUrl_DatabaseAccess() {
  1068.       return getTargetHelpUrl() + "#DatabaseAccess";
  1069.    }
  1070.  
  1071.    static String targetDesc_TerminalEmulator() {
  1072.       return resbundle.getString("Str170_TerminalAccess");
  1073.    }
  1074.  
  1075.    static String targetDetailDesc_TerminalEmulator() {
  1076.       return resbundle.getString("Str171_TerminalAccessDesc");
  1077.    }
  1078.  
  1079.    static String targetUrl_TerminalEmulator() {
  1080.       return getTargetHelpUrl() + "#TerminalEmulator";
  1081.    }
  1082.  
  1083.    static String targetDesc_JARPackager() {
  1084.       return resbundle.getString("Str172_JarAccess");
  1085.    }
  1086.  
  1087.    static String targetDetailDesc_JARPackager() {
  1088.       return resbundle.getString("Str173_JarAccessDesc");
  1089.    }
  1090.  
  1091.    static String targetUrl_JARPackager() {
  1092.       return getTargetHelpUrl() + "#JARPackager";
  1093.    }
  1094.  
  1095.    static String targetDesc_AccountSetup() {
  1096.       return resbundle.getString("Str174_ConfigureBrowserAccess");
  1097.    }
  1098.  
  1099.    static String targetDetailDesc_AccountSetup() {
  1100.       return resbundle.getString("Str175_ConfigureBrowserAccessDesc");
  1101.    }
  1102.  
  1103.    static String targetUrl_AccountSetup() {
  1104.       return getTargetHelpUrl() + "#AccountSetup";
  1105.    }
  1106.  
  1107.    static String targetDesc_ParamFileRead() {
  1108.       return resbundle.getString("Str176_SpecificReadAccess");
  1109.    }
  1110.  
  1111.    static String targetDetailDesc_ParamFileRead() {
  1112.       return resbundle.getString("Str176_SpecificReadAccess");
  1113.    }
  1114.  
  1115.    static String targetUrl_ParamFileRead() {
  1116.       return getTargetHelpUrl() + "#ParamFileRead";
  1117.    }
  1118.  
  1119.    static String targetDesc_ParamFileWrite() {
  1120.       return resbundle.getString("Str177_SpecificModifyAccess");
  1121.    }
  1122.  
  1123.    static String targetDetailDesc_ParamFileWrite() {
  1124.       return resbundle.getString("Str177_SpecificModifyAccess");
  1125.    }
  1126.  
  1127.    static String targetUrl_ParamFileWrite() {
  1128.       return getTargetHelpUrl() + "#ParamFileWrite";
  1129.    }
  1130.  
  1131.    static String targetDesc_ClassLoaderAccess() {
  1132.       return resbundle.getString("Str180_ClassLoaderAccess");
  1133.    }
  1134.  
  1135.    static String targetDetailDesc_ClassLoaderAccess() {
  1136.       return resbundle.getString("Str181_ClassLoaderAccessDesc");
  1137.    }
  1138.  
  1139.    static String targetUrl_ClassLoaderAccess() {
  1140.       return getTargetHelpUrl() + "#ClassLoaderAccess";
  1141.    }
  1142. }
  1143.