Skip to content

Commit db8e821

Browse files
committed
Merge pull request #14 from GumTreeDiff/feature/action_export
2 parents c7dfee3 + 6afa3e4 commit db8e821

File tree

146 files changed

+3213
-256
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

146 files changed

+3213
-256
lines changed

HEADER

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
This file is part of GumTree.
2+
3+
GumTree is free software: you can redistribute it and/or modify
4+
it under the terms of the GNU Lesser General Public License as published by
5+
the Free Software Foundation, either version 3 of the License, or
6+
(at your option) any later version.
7+
8+
GumTree is distributed in the hope that it will be useful,
9+
but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11+
GNU Lesser General Public License for more details.
12+
13+
You should have received a copy of the GNU Lesser General Public License
14+
along with GumTree. If not, see <http://www.gnu.org/licenses/>.

client.diff/pom.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,23 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
This file is part of GumTree.
4+
5+
GumTree is free software: you can redistribute it and/or modify
6+
it under the terms of the GNU Lesser 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+
GumTree 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 Lesser General Public License for more details.
14+
15+
You should have received a copy of the GNU Lesser General Public License
16+
along with GumTree. If not, see <http://www.gnu.org/licenses/>.
17+
18+
Copyright 2011-2015 Jean-Rémy Falleri <[email protected]>
19+
Copyright 2011-2015 Floréal Morandat <[email protected]>
20+
-->
221
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
322
<parent>
423
<artifactId>gumtree</artifactId>

client.diff/src/main/java/com/github/gumtreediff/client/diff/AbstractDiffClient.java

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
/*
2+
* This file is part of GumTree.
3+
*
4+
* GumTree is free software: you can redistribute it and/or modify
5+
* it under the terms of the GNU Lesser General Public License as published by
6+
* the Free Software Foundation, either version 3 of the License, or
7+
* (at your option) any later version.
8+
*
9+
* GumTree is distributed in the hope that it will be useful,
10+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
* GNU Lesser General Public License for more details.
13+
*
14+
* You should have received a copy of the GNU Lesser General Public License
15+
* along with GumTree. If not, see <http://www.gnu.org/licenses/>.
16+
*
17+
* Copyright 2011-2015 Jean-Rémy Falleri <[email protected]>
18+
* Copyright 2011-2015 Floréal Morandat <[email protected]>
19+
*/
20+
121
package com.github.gumtreediff.client.diff;
222

323
import com.github.gumtreediff.client.Option;

client.diff/src/main/java/com/github/gumtreediff/client/diff/AnnotatedXmlDiff.java

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
/*
2+
* This file is part of GumTree.
3+
*
4+
* GumTree is free software: you can redistribute it and/or modify
5+
* it under the terms of the GNU Lesser General Public License as published by
6+
* the Free Software Foundation, either version 3 of the License, or
7+
* (at your option) any later version.
8+
*
9+
* GumTree is distributed in the hope that it will be useful,
10+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
* GNU Lesser General Public License for more details.
13+
*
14+
* You should have received a copy of the GNU Lesser General Public License
15+
* along with GumTree. If not, see <http://www.gnu.org/licenses/>.
16+
*
17+
* Copyright 2011-2015 Jean-Rémy Falleri <[email protected]>
18+
* Copyright 2011-2015 Floréal Morandat <[email protected]>
19+
*/
20+
121
package com.github.gumtreediff.client.diff;
222

323
import com.github.gumtreediff.client.Option;

client.diff/src/main/java/com/github/gumtreediff/client/diff/SwingDiff.java

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
/*
2+
* This file is part of GumTree.
3+
*
4+
* GumTree is free software: you can redistribute it and/or modify
5+
* it under the terms of the GNU Lesser General Public License as published by
6+
* the Free Software Foundation, either version 3 of the License, or
7+
* (at your option) any later version.
8+
*
9+
* GumTree is distributed in the hope that it will be useful,
10+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
* GNU Lesser General Public License for more details.
13+
*
14+
* You should have received a copy of the GNU Lesser General Public License
15+
* along with GumTree. If not, see <http://www.gnu.org/licenses/>.
16+
*
17+
* Copyright 2011-2015 Jean-Rémy Falleri <[email protected]>
18+
* Copyright 2011-2015 Floréal Morandat <[email protected]>
19+
*/
20+
121
package com.github.gumtreediff.client.diff;
222

323
import com.github.gumtreediff.client.Register;

client.diff/src/main/java/com/github/gumtreediff/client/diff/WebDiff.java

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
/*
2+
* This file is part of GumTree.
3+
*
4+
* GumTree is free software: you can redistribute it and/or modify
5+
* it under the terms of the GNU Lesser General Public License as published by
6+
* the Free Software Foundation, either version 3 of the License, or
7+
* (at your option) any later version.
8+
*
9+
* GumTree is distributed in the hope that it will be useful,
10+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
* GNU Lesser General Public License for more details.
13+
*
14+
* You should have received a copy of the GNU Lesser General Public License
15+
* along with GumTree. If not, see <http://www.gnu.org/licenses/>.
16+
*
17+
* Copyright 2011-2015 Jean-Rémy Falleri <[email protected]>
18+
* Copyright 2011-2015 Floréal Morandat <[email protected]>
19+
*/
20+
121
package com.github.gumtreediff.client.diff;
222

323
import com.github.gumtreediff.client.Option;

client.diff/src/main/java/com/github/gumtreediff/client/diff/ui/swing/MappingsPanel.java

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
/*
2+
* This file is part of GumTree.
3+
*
4+
* GumTree is free software: you can redistribute it and/or modify
5+
* it under the terms of the GNU Lesser General Public License as published by
6+
* the Free Software Foundation, either version 3 of the License, or
7+
* (at your option) any later version.
8+
*
9+
* GumTree is distributed in the hope that it will be useful,
10+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
* GNU Lesser General Public License for more details.
13+
*
14+
* You should have received a copy of the GNU Lesser General Public License
15+
* along with GumTree. If not, see <http://www.gnu.org/licenses/>.
16+
*
17+
* Copyright 2011-2015 Jean-Rémy Falleri <[email protected]>
18+
* Copyright 2011-2015 Floréal Morandat <[email protected]>
19+
*/
20+
121
package com.github.gumtreediff.client.diff.ui.swing;
222

323
import java.awt.Color;

client.diff/src/main/java/com/github/gumtreediff/client/diff/ui/swing/SwingTree.java

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
/*
2+
* This file is part of GumTree.
3+
*
4+
* GumTree is free software: you can redistribute it and/or modify
5+
* it under the terms of the GNU Lesser General Public License as published by
6+
* the Free Software Foundation, either version 3 of the License, or
7+
* (at your option) any later version.
8+
*
9+
* GumTree is distributed in the hope that it will be useful,
10+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
* GNU Lesser General Public License for more details.
13+
*
14+
* You should have received a copy of the GNU Lesser General Public License
15+
* along with GumTree. If not, see <http://www.gnu.org/licenses/>.
16+
*
17+
* Copyright 2011-2015 Jean-Rémy Falleri <[email protected]>
18+
* Copyright 2011-2015 Floréal Morandat <[email protected]>
19+
*/
20+
121
package com.github.gumtreediff.client.diff.ui.swing;
222

323
import com.github.gumtreediff.gen.Generators;

client.diff/src/main/java/com/github/gumtreediff/client/diff/ui/swing/TreePanel.java

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
/*
2+
* This file is part of GumTree.
3+
*
4+
* GumTree is free software: you can redistribute it and/or modify
5+
* it under the terms of the GNU Lesser General Public License as published by
6+
* the Free Software Foundation, either version 3 of the License, or
7+
* (at your option) any later version.
8+
*
9+
* GumTree is distributed in the hope that it will be useful,
10+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
* GNU Lesser General Public License for more details.
13+
*
14+
* You should have received a copy of the GNU Lesser General Public License
15+
* along with GumTree. If not, see <http://www.gnu.org/licenses/>.
16+
*
17+
* Copyright 2011-2015 Jean-Rémy Falleri <[email protected]>
18+
* Copyright 2011-2015 Floréal Morandat <[email protected]>
19+
*/
20+
121
package com.github.gumtreediff.client.diff.ui.swing;
222

323
import com.github.gumtreediff.tree.ITree;

client.diff/src/main/java/com/github/gumtreediff/client/diff/ui/web/DiffServer.java

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
/*
2+
* This file is part of GumTree.
3+
*
4+
* GumTree is free software: you can redistribute it and/or modify
5+
* it under the terms of the GNU Lesser General Public License as published by
6+
* the Free Software Foundation, either version 3 of the License, or
7+
* (at your option) any later version.
8+
*
9+
* GumTree is distributed in the hope that it will be useful,
10+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
* GNU Lesser General Public License for more details.
13+
*
14+
* You should have received a copy of the GNU Lesser General Public License
15+
* along with GumTree. If not, see <http://www.gnu.org/licenses/>.
16+
*
17+
* Copyright 2011-2015 Jean-Rémy Falleri <[email protected]>
18+
* Copyright 2011-2015 Floréal Morandat <[email protected]>
19+
*/
20+
121
package com.github.gumtreediff.client.diff.ui.web;
222

323
import com.github.gumtreediff.tree.Pair;

0 commit comments

Comments
 (0)