Messages.java 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. ///////////////////////////////////////////////////////////////////////////
  2. // Copyright (c) 2018 Intel Corporation. //
  3. // //
  4. // All rights reserved. This program and the accompanying materials //
  5. // are made available under the terms of the Eclipse Public License v1.0 //
  6. // which accompanies this distribution, and is available at //
  7. // http://www.eclipse.org/legal/epl-v10.html //
  8. // //
  9. // Contributors: //
  10. // Intel Corporation - initial implementation and documentation //
  11. ///////////////////////////////////////////////////////////////////////////
  12. package com.intel.sgx;
  13. import org.eclipse.osgi.util.NLS;
  14. public class Messages extends NLS {
  15. private static final String BUNDLE_NAME = "com.intel.sgx.messages";//$NON-NLS-1$
  16. /*
  17. * TODO - These Strings can be used all through the package to control what messages are displayed.
  18. * Todo here is to identify any message that needs to be made configurable.
  19. */
  20. public static String CreateNativeFolders_No_folders;
  21. public static String CreateNativeFolders_Missing_project_name;
  22. public static String CreateNativeFolders_Project_does_not_exist;
  23. static{
  24. //Bundle initialization.
  25. NLS.initializeMessages(BUNDLE_NAME, Messages.class);
  26. }
  27. private Messages(){
  28. }
  29. }