Skip to content

Commit 3a14ff4

Browse files
committed
Added Stubs
1 parent 00f8afa commit 3a14ff4

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package processing.app.gradle;
2+
3+
import processing.app.ui.Editor;
4+
5+
public class GradleService {
6+
public GradleService(Editor editor) { }
7+
8+
public void prepare(){}
9+
public void run() {}
10+
public void export(){}
11+
public void stop() {}
12+
public void startService() {}
13+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package processing.app.gradle.ui;
2+
3+
import processing.app.ui.Editor;
4+
import processing.app.ui.EditorToolbar;
5+
6+
import javax.swing.*;
7+
8+
public class Toolbar {
9+
Toolbar(Editor editor){}
10+
public static JComponent legacyWrapped(Editor editor, EditorToolbar toolbar){
11+
return toolbar;
12+
}
13+
}

0 commit comments

Comments
 (0)