mirror of
https://github.com/processing/processing4.git
synced 2026-02-03 05:39:18 +01:00
renaming package for consistency
This commit is contained in:
@@ -3,6 +3,8 @@ o when running a sketch, need to unlock the device
|
||||
o http://dev.processing.org/bugs/show_bug.cgi?id=1500
|
||||
X add Pattern caching to match() to speed things up
|
||||
|
||||
"Unable to resolve target 'Google...'" when APIs aren't installed
|
||||
|
||||
_ path problems finding javac.exe on vista
|
||||
_ http://dev.processing.org/bugs/show_bug.cgi?id=1528
|
||||
|
||||
|
||||
@@ -4,8 +4,8 @@ import java.io.IOException;
|
||||
import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
import processing.app.Base;
|
||||
import processing.util.exec.ProcessHelper;
|
||||
import processing.util.exec.ProcessResult;
|
||||
import processing.app.exec.ProcessHelper;
|
||||
import processing.app.exec.ProcessResult;
|
||||
|
||||
public class AVD {
|
||||
// Tempting to switch to WVGA854 (854x480), the same aspect ratio
|
||||
|
||||
@@ -9,11 +9,11 @@ import java.util.Set;
|
||||
import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
import processing.app.debug.RunnerListener;
|
||||
import processing.app.exec.LineProcessor;
|
||||
import processing.app.exec.ProcessRegistry;
|
||||
import processing.app.exec.ProcessResult;
|
||||
import processing.app.exec.StreamPump;
|
||||
import processing.app.tools.android.LogEntry.Severity;
|
||||
import processing.util.exec.LineProcessor;
|
||||
import processing.util.exec.ProcessRegistry;
|
||||
import processing.util.exec.ProcessResult;
|
||||
import processing.util.exec.StreamPump;
|
||||
|
||||
class AndroidDevice implements AndroidDeviceProperties {
|
||||
private final AndroidEnvironment env;
|
||||
|
||||
@@ -11,8 +11,8 @@ import java.util.concurrent.ExecutorService;
|
||||
import java.util.concurrent.Executors;
|
||||
import java.util.concurrent.Future;
|
||||
import java.util.concurrent.FutureTask;
|
||||
import processing.app.exec.ProcessResult;
|
||||
import processing.app.tools.android.EmulatorController.State;
|
||||
import processing.util.exec.ProcessResult;
|
||||
|
||||
/**
|
||||
* <pre> AndroidEnvironment env = AndroidEnvironment.getInstance();
|
||||
|
||||
@@ -7,8 +7,8 @@ import javax.swing.JOptionPane;
|
||||
import processing.app.Base;
|
||||
import processing.app.Platform;
|
||||
import processing.app.Preferences;
|
||||
import processing.util.exec.ProcessHelper;
|
||||
import processing.util.exec.ProcessResult;
|
||||
import processing.app.exec.ProcessHelper;
|
||||
import processing.app.exec.ProcessResult;
|
||||
|
||||
class AndroidSDK {
|
||||
private final File sdk;
|
||||
|
||||
@@ -3,8 +3,8 @@ package processing.app.tools.android;
|
||||
import java.io.IOException;
|
||||
import java.util.concurrent.CountDownLatch;
|
||||
import processing.app.Preferences;
|
||||
import processing.util.exec.ProcessRegistry;
|
||||
import processing.util.exec.StreamPump;
|
||||
import processing.app.exec.ProcessRegistry;
|
||||
import processing.app.exec.StreamPump;
|
||||
|
||||
class EmulatorController {
|
||||
public static enum State {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package processing.util.exec;
|
||||
package processing.app.exec;
|
||||
|
||||
public interface LineProcessor {
|
||||
void processLine(final String line);
|
||||
@@ -17,7 +17,7 @@
|
||||
along with this program; if not, write to the Free Software Foundation,
|
||||
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
package processing.util.exec;
|
||||
package processing.app.exec;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.StringWriter;
|
||||
@@ -1,4 +1,4 @@
|
||||
package processing.util.exec;
|
||||
package processing.app.exec;
|
||||
|
||||
import java.util.Collections;
|
||||
import java.util.HashSet;
|
||||
@@ -1,4 +1,4 @@
|
||||
package processing.util.exec;
|
||||
package processing.app.exec;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.Iterator;
|
||||
@@ -1,4 +1,4 @@
|
||||
package processing.util.exec;
|
||||
package processing.app.exec;
|
||||
|
||||
import java.io.BufferedReader;
|
||||
import java.io.IOException;
|
||||
@@ -5,8 +5,8 @@ import java.io.FileWriter;
|
||||
import java.io.IOException;
|
||||
import processing.app.Base;
|
||||
import processing.app.Editor;
|
||||
import processing.util.exec.ProcessHelper;
|
||||
import processing.util.exec.ProcessResult;
|
||||
import processing.app.exec.ProcessHelper;
|
||||
import processing.app.exec.ProcessResult;
|
||||
|
||||
public class Uncrustify implements Tool {
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import java.util.regex.Pattern;
|
||||
import org.junit.BeforeClass;
|
||||
import org.junit.Test;
|
||||
import processing.app.debug.RunnerException;
|
||||
import processing.util.exec.ProcessResult;
|
||||
import processing.app.exec.ProcessResult;
|
||||
import antlr.RecognitionException;
|
||||
import static test.processing.parsing.ProcessingTestUtil.res;
|
||||
import static test.processing.parsing.ProcessingTestUtil.COMPILER;
|
||||
|
||||
@@ -5,8 +5,8 @@ import java.io.FileWriter;
|
||||
import java.io.IOException;
|
||||
import processing.app.Base;
|
||||
import processing.app.Platform;
|
||||
import processing.util.exec.ProcessHelper;
|
||||
import processing.util.exec.ProcessResult;
|
||||
import processing.app.exec.ProcessHelper;
|
||||
import processing.app.exec.ProcessResult;
|
||||
|
||||
/**
|
||||
* Utility class for compiling single compilationUnits.
|
||||
|
||||
Reference in New Issue
Block a user