View Javadoc

1   /**********************************************
2    * Copyright (C) 2010 Lukas Laag
3    * This file is part of lib-gwt-svg-edu.
4    * 
5    * libgwtsvg-edu is free software: you can redistribute it and/or modify
6    * it under the terms of the GNU General Public License as published by
7    * the Free Software Foundation, either version 3 of the License, or
8    * (at your option) any later version.
9    * 
10   * libgwtsvg-edu is distributed in the hope that it will be useful,
11   * but WITHOUT ANY WARRANTY; without even the implied warranty of
12   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13   * GNU General Public License for more details.
14   * 
15   * You should have received a copy of the GNU General Public License
16   * along with libgwtsvg-edu.  If not, see http://www.gnu.org/licenses/
17   **********************************************/
18  package org.vectomatic.svg.edu.client.maze;
19  
20  import org.vectomatic.dom.svg.ui.SVGResource;
21  
22  import com.google.gwt.core.client.GWT;
23  import com.google.gwt.resources.client.ClientBundle;
24  import com.google.gwt.resources.client.TextResource;
25  
26  public interface MazeBundle extends ClientBundle {
27  	public static final MazeBundle INSTANCE = GWT.create(MazeBundle.class);
28  	@Source("maze.css")
29  	public MazeCss getCss();
30  	@Source("mazeLayout.css")
31  	public MazeLayoutCss mazeLayout();
32  	@Source("mazeLayoutLandscape.css")
33  	public MazeLayoutCss mazeLayoutLandscape();
34  	@Source("mazeLayoutPortrait.css")
35  	public MazeLayoutCss mazeLayoutPortrait();
36  	@Source("levels.txt")
37  	public TextResource levels();
38  	@Source("direction_a_suivre_4_yve_01.svg")
39  	public SVGResource up();
40  	@Source("direction_a_suivre_1_yve_01.svg")
41  	public SVGResource down();
42  	@Source("direction_a_suivre_2_yve_01.svg")
43  	public SVGResource left();
44  	@Source("direction_a_suivre_3_yve_01.svg")
45  	public SVGResource right();
46  	@Source("eraser.svg")
47  	public SVGResource back();
48  	@Source("salvagente_architetto_fr_01.svg")
49  	public SVGResource help();
50  	@Source("computer.svg")
51  	public SVGResource compute();
52  }