Skip to content

Commit

Permalink
KAA-384: removed autogenerated paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergii Yemets committed Mar 10, 2015
1 parent bd02c0e commit f53d231
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,11 @@

public class EventDemo {


private static final Logger LOG = LoggerFactory.getLogger(EventDemo.class);

public static void main(String[] args) {
LOG.info("Event demo has been started");
doWork();
LOG.info("Event demo has been stopped");
}
LOG.info("Event demo started");

public static void doWork() {
KaaClient kaaClient = Kaa.newClient(new DesktopKaaPlatformContext(),
new SimpleKaaClientStateListener());
kaaClient.start();
Expand Down Expand Up @@ -131,6 +126,9 @@ public void onEvent(ThermostatInfoRequest arg0, String arg1) {
}

kaaClient.stop();

LOG.info("Event demo stopped");
}


}
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,18 @@ public class DemoBuildersRegistry {
private static final List<DemoBuilder> demoBuilders = new ArrayList<>();

static {
//ANDROID DEMOS
demoBuilders.add(new NotificationDemoBuilder());
demoBuilders.add(new JDataCollectionDemoBuider());
demoBuilders.add(new JEventDemoBuilder());
demoBuilders.add(new CellMonitorDemoBuilder());
demoBuilders.add(new CityGuideDemoBuilder());
demoBuilders.add(new PhotoFrameDemoBuilder());
demoBuilders.add(new SmartHouseDemoBuilder());
// demoBuilders.add(new RobotRunDemoBuilder());


//PURE JAVA DEMOS
demoBuilders.add(new JEventDemoBuilder());
demoBuilders.add(new JDataCollectionDemoBuider());
}

public static List<DemoBuilder> getRegisteredDemoBuilders() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

/**
* Interface to represent the constants contained in resource bundle:
* '/home/dyosick/projects/github_kaa/kaa/sandbox/web/src/main/java/org/kaaproject/kaa/sandbox/web/client/i18n/SandboxConstants.properties'.
*/
public interface SandboxConstants extends com.google.gwt.i18n.client.ConstantsWithLookup {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

/**
* Interface to represent the messages contained in resource bundle:
* /home/dyosick/projects/github_kaa/kaa/sandbox/web/src/main/java/org/kaaproject/kaa/sandbox/web/client/i18n/SandboxMessages.properties'.
*/
public interface SandboxMessages extends com.google.gwt.i18n.client.Messages {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

/**
* Interface to represent the constants contained in resource bundle:
* '/home/dyosick/projects/github_kaa/kaa/server/admin/src/main/java/org/kaaproject/kaa/server/admin/client/i18n/KaaAdminConstants.properties'.
*/
public interface KaaAdminConstants extends com.google.gwt.i18n.client.ConstantsWithLookup {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

/**
* Interface to represent the messages contained in resource bundle:
* /home/dyosick/projects/github_kaa/kaa/server/admin/src/main/java/org/kaaproject/kaa/server/admin/client/i18n/KaaAdminMessages.properties'.
*/
public interface KaaAdminMessages extends com.google.gwt.i18n.client.Messages {

Expand Down

0 comments on commit f53d231

Please sign in to comment.