Projekt

Obecné

Profil

« Předchozí | Další » 

Revize d9df7b6a

Přidáno uživatelem Tomáš Šimandl před asi 6 roky(ů)

minor fixes

Zobrazit rozdíly:

sources/src/main/java/cz/zcu/kiv/offscreen/api/EdgeArchetype.java
4 4
    public String name;
5 5
    public String text;
6 6

  
7
    EdgeArchetype(String name, String text) {
7
    public EdgeArchetype(String name, String text) {
8 8
        this.name = name;
9 9
        this.text = text;
10 10
    }
sources/src/main/java/cz/zcu/kiv/offscreen/api/VertexArchetype.java
5 5
    public String text;
6 6
    public String icon;
7 7

  
8
    VertexArchetype(String name, String text, String icon) {
8
    public VertexArchetype(String name, String text, String icon) {
9 9
        this.name = name;
10 10
        this.text = text;
11 11
        this.icon = icon;
12 12
    }
13 13

  
14
    VertexArchetype(String name, String text) {
14
    public VertexArchetype(String name, String text) {
15 15
        this(name, text, "");
16 16
    }
17 17

  
sources/src/main/webapp/css/main.css
48 48
	box-shadow: 3px 3px 10px #888;
49 49
}
50 50

  
51
.diagrams-menu li {
52
	height: 20px;
53
}
54

  
51 55
.diagrams-menu li button {
52 56
	float: right;
53 57
    width: 20px;
sources/src/test/java/cz/zcu/kiv/imiger/tests/backend/GraphFilterTest.java
28 28

  
29 29
        File graphFile = new File(testDirectory + "\\data\\test1.json");
30 30

  
31
        try {
32
            graphManager = new GraphJSONDataLoader(graphFile).LoadData();
33
        } catch (IOException e) {
34
            e.printStackTrace();
35
        }
31
        graphManager = new GraphJSONDataLoader(graphFile).LoadData();
36 32
    }
37 33

  
38 34
    @Test

Také k dispozici: Unified diff