Skip to content

Commit

Permalink
re-organising methods in DEECoNode class
Browse files Browse the repository at this point in the history
  • Loading branch information
iliasger committed Feb 14, 2015
1 parent c3f5c2d commit d2c04d2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions jdeeco-core/src/cz/cuni/mff/d3s/deeco/runtime/DEECoNode.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,11 @@ public DEECoNode(SchedulerNotifier schedulerNotifier, DEECoPlugin... plugins) th
initializePlugins(plugins);
}

@Override
public int getId() {
return id;
}

public ComponentInstance deployComponent(Object component) throws AnnotationProcessorException {
return processor.processComponent(component);
}
Expand Down Expand Up @@ -188,9 +193,4 @@ private void createRuntime(SchedulerNotifier schedulerNotifier) throws NoExecuto
runtime = new RuntimeFrameworkImpl(model, scheduler, executor, kmContainer);
}

@Override
public int getId() {
return id;
}

}

0 comments on commit d2c04d2

Please sign in to comment.