Java tutorial
/******************************************************************************* * Copyright (c) 2010, 2012 Tasktop Technologies * * 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: * Tasktop Technologies - initial API and implementation ******************************************************************************/ package com.googlecode.google_code_prettify; import com.google.gwt.resources.client.ClientBundle; import com.google.gwt.resources.client.CssResource; import com.google.gwt.resources.client.CssResource.NotStrict; import com.google.gwt.resources.client.TextResource; /** * @author cmorgan (Tasktop Technologies Inc.) * */ public interface GoogleCodePrettifyBundle extends ClientBundle { @Source("js/prettify.js") TextResource prettifyJavaScript(); @NotStrict @Source("css/prettify.css") CssResource prettifyCss(); }