home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 March / PCWorld_2001-03_cd.bin / Software / Komercni / VAgeJava / ivj35 / setup / TSV.Cab / F25587_SamplesBundle.java < prev   
Text File  |  1999-07-27  |  3KB  |  66 lines

  1. package com.ibm.ivj.toolserver.samples;
  2.  
  3. // Licensed Material - Property of IBM 
  4. // IBM(R) VisualAge(R) for Java(TM), Version 3.0 
  5. // (C) Copyright IBM Corp. 1997, 1999 - All Rights Reserved. 
  6. // US Government Users Restricted Rights - Use, duplication or disclosure 
  7. // restricted by GSA ADP Schedule Contract with IBM Corp.
  8. // Licensed Material - Property of IBM 
  9. // (C) Copyright IBM Corp. 1997, 1999 - All Rights Reserved 
  10. // DISCLAIMER: 
  11. // The following [enclosed] code is sample code created by IBM 
  12. // Corporation.  This sample code is not part of any standard IBM product 
  13. // and is provided to you solely for the purpose of assisting you in the 
  14. // development of your applications.  The code is provided 'AS IS', 
  15. // without warranty or condition of any kind.  IBM shall not be liable for any damages 
  16. // arising out of your use of the sample code, even if IBM has been 
  17. // advised of the possibility of such damages.
  18.  
  19. /**
  20.  * The ResourceBundle for the samples supplied for Remote
  21.  * Access to Tool API.
  22.  */
  23. public class SamplesBundle extends java.util.ListResourceBundle {
  24.     private Object[][] contents = {
  25.         { "ErrorFindProject", "Error in finding the project"},
  26.         { "ErrorLaunchBrowser", "Error: unable to launch the type browser"},
  27.         { "ErrorFindType", "Error: unable to find type"},
  28.         { "ErrorDirNotExist", "Error: The directory does not exist"},
  29.         { "ErrorExportFailed", "Error: The export failed"},
  30.         { "ErrorConnect", "Error connecting to WORKSPACE...aborting test import !" },
  31.         { "ErrorBadParametersImportdir", "Error: <code>importdir</code> not specified as a parameter" },
  32.         { "ErrorBadParametersProject", "Error: <code>project</code> not specified as a parameter" },
  33.         { "ErrorBadParametersExportdir", "Error: <code>exportdir</code> not specified as a parameter"},
  34.         { "ErrorBadParametersType","Error: <code>type</code> not specified as a parameter"},
  35.         { "ErrorBadParameterExjava", "Error: <code>exportjava</code> not specified as a parameter"},
  36.         { "ErrorBadParameterExclass", "Error: <code>exportclass</code> not specified as a parameter"},
  37.         { "ErrorCreateProject", "Error in creating project" },
  38.         { "ErrorProjectOpen", "Error in creating Project open edition" },
  39.         { "ErrorPackageOpen", "Error in creating Package open edition" },
  40.         { "ErrorImportFailed", "Java files were not successfully imported" },
  41.         { "ErrorNoFiles", "No .java files were found"},
  42.         
  43.         { "TitleImport", "Importing multiple .java files to the workspace." },
  44.         { "TitleExport", "Exporting specified java file to the file system."},
  45.         { "TitleLaunch", "Launching a browser on the specified type."},
  46.         
  47.         { "ExportSucceeded", "The java file was successfully exported" },        
  48.         { "ImportSucceeded", "Java files were successfully imported" },
  49.         { "LaunchSucceeded", "The browser was successfully launched"},
  50.  
  51.         { "InfoDirList", "Generating directory listing..."},
  52.         { "InfoCreateProject", "Creating the project"},
  53.         { "InfoOpenProject", "Creating an open edition of the project..."},
  54.         { "InfoOpenPackage", "Creating open editions of the packages..."},
  55.         { "InfoImport", "Importing the files..."},
  56.         { "InfoExporting", "Exporting the java file..."},
  57.         { "InfoFindProject", "Finding the project..."},
  58.         { "InfoFindType", "Finding the type..."},        
  59.         { "InfoConnect", "Connecting to workspace..."},
  60.         { "InfoLaunchBrowser", "Launching the browser..."},
  61.     };
  62.     public Object[][] getContents() {
  63.         return contents;
  64.     }
  65. }
  66.