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
Wrap
Text File
|
1999-07-27
|
3KB
|
66 lines
package com.ibm.ivj.toolserver.samples;
// Licensed Material - Property of IBM
// IBM(R) VisualAge(R) for Java(TM), Version 3.0
// (C) Copyright IBM Corp. 1997, 1999 - All Rights Reserved.
// US Government Users Restricted Rights - Use, duplication or disclosure
// restricted by GSA ADP Schedule Contract with IBM Corp.
// Licensed Material - Property of IBM
// (C) Copyright IBM Corp. 1997, 1999 - All Rights Reserved
// DISCLAIMER:
// The following [enclosed] code is sample code created by IBM
// Corporation. This sample code is not part of any standard IBM product
// and is provided to you solely for the purpose of assisting you in the
// development of your applications. The code is provided 'AS IS',
// without warranty or condition of any kind. IBM shall not be liable for any damages
// arising out of your use of the sample code, even if IBM has been
// advised of the possibility of such damages.
/**
* The ResourceBundle for the samples supplied for Remote
* Access to Tool API.
*/
public class SamplesBundle extends java.util.ListResourceBundle {
private Object[][] contents = {
{ "ErrorFindProject", "Error in finding the project"},
{ "ErrorLaunchBrowser", "Error: unable to launch the type browser"},
{ "ErrorFindType", "Error: unable to find type"},
{ "ErrorDirNotExist", "Error: The directory does not exist"},
{ "ErrorExportFailed", "Error: The export failed"},
{ "ErrorConnect", "Error connecting to WORKSPACE...aborting test import !" },
{ "ErrorBadParametersImportdir", "Error: <code>importdir</code> not specified as a parameter" },
{ "ErrorBadParametersProject", "Error: <code>project</code> not specified as a parameter" },
{ "ErrorBadParametersExportdir", "Error: <code>exportdir</code> not specified as a parameter"},
{ "ErrorBadParametersType","Error: <code>type</code> not specified as a parameter"},
{ "ErrorBadParameterExjava", "Error: <code>exportjava</code> not specified as a parameter"},
{ "ErrorBadParameterExclass", "Error: <code>exportclass</code> not specified as a parameter"},
{ "ErrorCreateProject", "Error in creating project" },
{ "ErrorProjectOpen", "Error in creating Project open edition" },
{ "ErrorPackageOpen", "Error in creating Package open edition" },
{ "ErrorImportFailed", "Java files were not successfully imported" },
{ "ErrorNoFiles", "No .java files were found"},
{ "TitleImport", "Importing multiple .java files to the workspace." },
{ "TitleExport", "Exporting specified java file to the file system."},
{ "TitleLaunch", "Launching a browser on the specified type."},
{ "ExportSucceeded", "The java file was successfully exported" },
{ "ImportSucceeded", "Java files were successfully imported" },
{ "LaunchSucceeded", "The browser was successfully launched"},
{ "InfoDirList", "Generating directory listing..."},
{ "InfoCreateProject", "Creating the project"},
{ "InfoOpenProject", "Creating an open edition of the project..."},
{ "InfoOpenPackage", "Creating open editions of the packages..."},
{ "InfoImport", "Importing the files..."},
{ "InfoExporting", "Exporting the java file..."},
{ "InfoFindProject", "Finding the project..."},
{ "InfoFindType", "Finding the type..."},
{ "InfoConnect", "Connecting to workspace..."},
{ "InfoLaunchBrowser", "Launching the browser..."},
};
public Object[][] getContents() {
return contents;
}
}