1 /*
2 * This file is a part of CAST project.
3 * (c) Copyright 2007, AGH University of Science & Technology
4 * All rights reserved. Check the documentation for licensing terms.
5 * https://caribou.iisg.agh.edu.pl/trac/cast
6 */
7 package pl.edu.agh.cast.zestalgorithms;
8
9 import org.eclipse.osgi.util.NLS;
10
11 /**
12 * Messages.
13 *
14 * @author AGH CAST Team
15 */
16 public class Messages extends NLS {
17 private static final String BUNDLE_NAME = "pl.edu.agh.cast.zestalgorithms.messages"; //$NON-NLS-1$
18
19 public static String LayoutAlgorithmAdapter_0;
20 static {
21 // initialize resource bundle
22 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
23 }
24
25 private Messages() {
26 }
27 }