/******************************************************************************* * Copyright (c) 2017 Rogue Wave Software Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Rogue Wave Software Inc. - initial implementation *******************************************************************************/ package org.eclipse.php.internal.ui.wizards.types; public class TypeWizardConstants { public final static String CLASS_TEMPLATE_LOCATION = "resources/templates/ClassTemplate.tpl.php"; //$NON-NLS-1$ public final static String INTERFACE_TEMPLATE_LOCATION = "resources/templates/InterfaceTemplate.tpl.php"; //$NON-NLS-1$ public final static String CLASS_TYPE = "class"; //$NON-NLS-1$ public final static String INTERFACE_TYPE = "interface"; //$NON-NLS-1$ public final static String TRAIT_TYPE = "trait"; //$NON-NLS-1$ public final static String PHP5_CONSTRUCTOR_TEMPLATE = "__construct"; //$NON-NLS-1$ public final static String PHP5_DESTRUCTOR_TEMPLATE = "__destruct"; //$NON-NLS-1$ public final static String PRIVATE_MODIFIER = "private"; //$NON-NLS-1$ public final static String PROTECTED_MODIFIER = "protected"; //$NON-NLS-1$ public final static String PUBLIC_MODIFIER = "public"; //$NON-NLS-1$ public final static String STATIC_MODIFIER = "static"; //$NON-NLS-1$ public final static String CLASS_ICON_WIZBAN = "icons/full/wizban/newclass_wiz.png"; //$NON-NLS-1$ public final static String TRAIT_ICON_WIZBAN = "icons/full/wizban/newtrait_wiz.png"; //$NON-NLS-1$ public final static String INTERFACE_ICON_WIZBAN = "icons/full/wizban/newint_wiz.png"; //$NON-NLS-1$ public final static String NEW_FILE_DEFAULT_NAME = "newfile.php";//$NON-NLS-1$ }