All Downloads are FREE. Search and download functionalities are using the official Maven repository.

es.ree.eemws.kit.gui.common.Constants Maven / Gradle / Ivy

Go to download

Client implementation of IEC 62325-504 technical specification. eemws-kit includes command line utilities to invoke the eem web services, as well as several GUI applications (browser, editor, ...)

The newest version!
/*
 * Copyright 2024 Redeia.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published
 *  by the Free Software Foundation, version 3 of the license.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTIBIILTY or FITNESS FOR A PARTICULAR PURPOSE. See GNU Lesser General
 * Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this program. If not, see
 * http://www.gnu.org/licenses/.
 *
 * Any redistribution and/or modification of this program has to make
 * reference to Redeia as the copyright owner of the program.
 */
package es.ree.eemws.kit.gui.common;

import java.awt.Font;

/**
 * Common constants for GUI classes.
 *
 * @author Redeia.
 * @version 2.1 01/01/2024
 */
public final class Constants {

	/**
	 * Constructor.
	 */
	private Constants() {

		/* Static classes must have private constructor. */
	}

	/** Path to the images folder. */
	private static final String IMG_PATH = "/images/"; //$NON-NLS-1$

	/** Path to the logo image. */
	public static final String ICON_PATH = IMG_PATH + "app_icon.png"; //$NON-NLS-1$

	/** Path to the Open file image. */
	public static final String ICON_OPEN = IMG_PATH + "open.gif"; //$NON-NLS-1$

	/** Path to the send image. */
	public static final String ICON_SEND = IMG_PATH + "send.gif"; //$NON-NLS-1$

	/** Path to the save image. */
	public static final String ICON_SAVE = IMG_PATH + "save.gif"; //$NON-NLS-1$

	/** Path to the save as image. */
	public static final String ICON_SAVE_AS = IMG_PATH + "save_as.gif"; //$NON-NLS-1$

	/** Path to the new image. */
	public static final String ICON_NEW = IMG_PATH + "new.gif"; //$NON-NLS-1$

	/** Path to the go image. */
	public static final String ICON_GO = IMG_PATH + "go.gif"; //$NON-NLS-1$

	/** Path to the find image. */
	public static final String ICON_FIND = IMG_PATH + "find.gif"; //$NON-NLS-1$

	/** Path to the format image. */
	public static final String ICON_FORMAT = IMG_PATH + "format.gif"; //$NON-NLS-1$

	/** Path to the validate image. */
	public static final String ICON_VALIDATE = IMG_PATH + "validate.gif"; //$NON-NLS-1$

	/** Define font style. */
	public static final Font FONT_STYLE = new Font("Dialog", Font.PLAIN, 12); //$NON-NLS-1$
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy