/******************************************************************************* * Copyright (c) 2012-2016 Codenvy, S.A. * 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: * Codenvy, S.A. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.web.html; import org.eclipse.che.ide.ext.web.WebLocalizationConstant; import org.eclipse.che.ide.newresource.AbstractNewResourceAction; import com.google.inject.Inject; import com.google.inject.Singleton; /** * Action to create new HTML file. * * @author Artem Zatsarynnyi */ @Singleton public class NewHtmlFileAction extends AbstractNewResourceAction { private static final String DEFAULT_CONTENT = "<!DOCTYPE html>\n" + "<html>\n" + "<head>\n" + " <title></title>\n" + "</head>\n" + "<body>\n" + "\n" + "</body>\n" + "</html>"; @Inject public NewHtmlFileAction(WebLocalizationConstant localizationConstant) { super(localizationConstant.newHtmlFileActionTitle(), localizationConstant.newHtmlFileActionDescription(), null); } @Override protected String getExtension() { return "html"; } @Override protected String getDefaultContent() { return DEFAULT_CONTENT; } }