Skip to content
This repository has been archived by the owner on Oct 20, 2022. It is now read-only.

Commit

Permalink
as we now simply rely on intents to manage the ARO data collector, we…
Browse files Browse the repository at this point in the history
… can get rid of this.

It also makes the integration a bit cleaner as only the data collector apk is required
  • Loading branch information
pcrepieux committed Mar 19, 2014
1 parent c21dfaf commit 71ba557
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 30 deletions.
Binary file removed libs/ARO.jar
Binary file not shown.
31 changes: 1 addition & 30 deletions src/com/orange/atk/atkUI/coregui/MatosGUI.java
Expand Up @@ -52,9 +52,6 @@
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;

import com.att.aro.main.AROEnabledFrame;
import com.att.aro.main.DatacollectorBridge;
import com.att.aro.model.TraceData;
import org.apache.log4j.Logger;

import com.orange.atk.atkUI.corecli.Alert;
Expand All @@ -70,7 +67,7 @@
* @author Aurore PENAULT
* @since JDK5.0
*/
public class MatosGUI extends AROEnabledFrame {
public class MatosGUI extends JFrame {

/**
*
Expand Down Expand Up @@ -684,30 +681,4 @@ public static Campaign getSelectedCampaign() {
}
return selectedCampaign;
}

@Override
public TraceData getTraceData() {
return null; //To change body of implemented methods use File | Settings | File Templates.
}

@Override
public void clearTrace() throws IOException {
// TODO Auto-generated method stub

}

@Override
public void openTrace(File file) {
//To change body of implemented methods use File | Settings | File Templates.
}

@Override
public void dataCollectorStatusCallBack(DatacollectorBridge.Status status) {
//To change body of implemented methods use File | Settings | File Templates.
}

@Override
public void dataCollectorStatusCallBack(boolean b, boolean b2) {
//To change body of implemented methods use File | Settings | File Templates.
}
}

0 comments on commit 71ba557

Please sign in to comment.