1 12 package org.eclipse.jdt.apt.core.internal.build; 13 14 import org.eclipse.osgi.util.NLS; 15 16 public class Messages extends NLS { 17 private static final String BUNDLE_NAME = "org.eclipse.jdt.apt.core.build.messages"; 19 private Messages() { 20 } 21 22 static { 23 NLS.initializeMessages(BUNDLE_NAME, Messages.class); 25 } 26 27 public static String JdtApt_noWorkspace; 28 29 public static String JdtApt_noEclipse; 30 31 public static String JdtApt_noStartupJar; 32 } 33 | Popular Tags |