Advertisement
Guest User

mustafa

a guest
Nov 24th, 2015
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 16.98 KB | None | 0 0
  1.  # 11/24/15 11:56:00 AM EET
  2.     # Eclipse Compiler for Java(TM) v20150902-1521, 3.11.1, Copyright IBM Corp 2000, 2015. All rights reserved.
  3.     ----------
  4.     1. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 23)
  5.         import org.eclipse.kura.KuraException;
  6.                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  7.     The import org.eclipse.kura.KuraException cannot be resolved
  8.     ----------
  9.     2. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 24)
  10.         import org.eclipse.kura.cloud.CloudClient;
  11.                ^^^^^^^^^^^^^^^^^^^^^^
  12.     The import org.eclipse.kura.cloud cannot be resolved
  13.     ----------
  14.     3. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 25)
  15.         import org.eclipse.kura.cloud.CloudClientListener;
  16.                ^^^^^^^^^^^^^^^^^^^^^^
  17.     The import org.eclipse.kura.cloud cannot be resolved
  18.     ----------
  19.     4. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 26)
  20.         import org.eclipse.kura.cloud.CloudService;
  21.                ^^^^^^^^^^^^^^^^^^^^^^
  22.     The import org.eclipse.kura.cloud cannot be resolved
  23.     ----------
  24.     5. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 27)
  25.         import org.eclipse.kura.comm.CommConnection;
  26.                ^^^^^^^^^^^^^^^^^^^^^
  27.     The import org.eclipse.kura.comm cannot be resolved
  28.     ----------
  29.     6. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 28)
  30.         import org.eclipse.kura.comm.CommURI;
  31.                ^^^^^^^^^^^^^^^^^^^^^
  32.     The import org.eclipse.kura.comm cannot be resolved
  33.     ----------
  34.     7. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 29)
  35.         import org.eclipse.kura.configuration.ConfigurableComponent;
  36.                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  37.     The import org.eclipse.kura.configuration cannot be resolved
  38.     ----------
  39.     8. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 30)
  40.         import org.eclipse.kura.message.KuraPayload;
  41.                ^^^^^^^^^^^^^^^^^^^^^^^^
  42.     The import org.eclipse.kura.message cannot be resolved
  43.     ----------
  44.     9. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 37)
  45.         public class ExampleSerialPublisher implements ConfigurableComponent, CloudClientListener  
  46.                                                        ^^^^^^^^^^^^^^^^^^^^^
  47.     ConfigurableComponent cannot be resolved to a type
  48.     ----------
  49.     10. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 37)
  50.         public class ExampleSerialPublisher implements ConfigurableComponent, CloudClientListener  
  51.                                                                               ^^^^^^^^^^^^^^^^^^^
  52.     CloudClientListener cannot be resolved to a type
  53.     ----------
  54.     11. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 58)
  55.         private CloudService m_cloudService;
  56.                 ^^^^^^^^^^^^
  57.     CloudService cannot be resolved to a type
  58.     ----------
  59.     12. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 59)
  60.         private CloudClient m_cloudClient;
  61.                 ^^^^^^^^^^^
  62.     CloudClient cannot be resolved to a type
  63.     ----------
  64.     13. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 63)
  65.         private CommConnection m_commConnection;
  66.                 ^^^^^^^^^^^^^^
  67.     CommConnection cannot be resolved to a type
  68.     ----------
  69.     14. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 87)
  70.         public void setCloudService(CloudService cloudService) {
  71.                                     ^^^^^^^^^^^^
  72.     CloudService cannot be resolved to a type
  73.     ----------
  74.     15. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 88)
  75.         m_cloudService = cloudService;
  76.         ^^^^^^^^^^^^^^
  77.     CloudService cannot be resolved to a type
  78.     ----------
  79.     16. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 91)
  80.         public void unsetCloudService(CloudService cloudService) {
  81.                                       ^^^^^^^^^^^^
  82.     CloudService cannot be resolved to a type
  83.     ----------
  84.     17. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 92)
  85.         m_cloudService = null;
  86.         ^^^^^^^^^^^^^^
  87.     CloudService cannot be resolved to a type
  88.     ----------
  89.     18. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 120)
  90.         m_cloudClient = m_cloudService.newCloudClient(APP_ID);
  91.         ^^^^^^^^^^^^^
  92.     CloudClient cannot be resolved to a type
  93.     ----------
  94.     19. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 120)
  95.         m_cloudClient = m_cloudService.newCloudClient(APP_ID);
  96.                         ^^^^^^^^^^^^^^
  97.     CloudService cannot be resolved to a type
  98.     ----------
  99.     20. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 121)
  100.         m_cloudClient.addCloudClientListener(this);
  101.         ^^^^^^^^^^^^^
  102.     CloudClient cannot be resolved to a type
  103.     ----------
  104.     21. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 145)
  105.         m_cloudClient.release();
  106.         ^^^^^^^^^^^^^
  107.     CloudClient cannot be resolved to a type
  108.     ----------
  109.     22. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 170)
  110.         KuraPayload msg, int qos, boolean retain) {
  111.         ^^^^^^^^^^^
  112.     KuraPayload cannot be resolved to a type
  113.     ----------
  114.     23. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 177)
  115.         KuraPayload msg, int qos, boolean retain) {
  116.         ^^^^^^^^^^^
  117.     KuraPayload cannot be resolved to a type
  118.     ----------
  119.     24. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 183)
  120.         public void onConnectionLost() {
  121.                     ^^^^^^^^^^^^^^^^^^
  122.     The method onConnectionLost() of type ExampleSerialPublisher must override or implement a supertype method
  123.     ----------
  124.     25. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 189)
  125.         public void onConnectionEstablished() {
  126.                     ^^^^^^^^^^^^^^^^^^^^^^^^^
  127.     The method onConnectionEstablished() of type ExampleSerialPublisher must override or implement a supertype method
  128.     ----------
  129.     26. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 195)
  130.         public void onMessageConfirmed(int messageId, String appTopic) {
  131.                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  132.     The method onMessageConfirmed(int, String) of type ExampleSerialPublisher must override or implement a supertype method
  133.     ----------
  134.     27. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 201)
  135.         public void onMessagePublished(int messageId, String appTopic) {
  136.                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  137.     The method onMessagePublished(int, String) of type ExampleSerialPublisher must override or implement a supertype method
  138.     ----------
  139.     28. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 231)
  140.         m_cloudClient.unsubscribe(topic);
  141.         ^^^^^^^^^^^^^
  142.     CloudClient cannot be resolved to a type
  143.     ----------
  144.     29. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 232)
  145.         } catch (KuraException e) {
  146.                  ^^^^^^^^^^^^^
  147.     KuraException cannot be resolved to a type
  148.     ----------
  149.     30. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 247)
  150.         m_cloudClient.subscribe(topic, 0);
  151.         ^^^^^^^^^^^^^
  152.     CloudClient cannot be resolved to a type
  153.     ----------
  154.     31. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 248)
  155.         } catch (KuraException e) {
  156.                  ^^^^^^^^^^^^^
  157.     KuraException cannot be resolved to a type
  158.     ----------
  159.     32. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 279)
  160.         int parity = CommURI.PARITY_NONE;
  161.                      ^^^^^^^
  162.     CommURI cannot be resolved to a variable
  163.     ----------
  164.     33. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 281)
  165.         parity = CommURI.PARITY_NONE;
  166.                  ^^^^^^^
  167.     CommURI cannot be resolved to a variable
  168.     ----------
  169.     34. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 283)
  170.         parity = CommURI.PARITY_ODD;   
  171.                  ^^^^^^^
  172.     CommURI cannot be resolved to a variable
  173.     ----------
  174.     35. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 285)
  175.         parity = CommURI.PARITY_EVEN;
  176.                  ^^^^^^^
  177.     CommURI cannot be resolved to a variable
  178.     ----------
  179.     36. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 288)
  180.         String uri = new CommURI.Builder(port)
  181.                          ^^^^^^^
  182.     CommURI cannot be resolved to a type
  183.     ----------
  184.     37. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 297)
  185.         m_commConnection = (CommConnection) m_connectionFactory.createConnection(uri, 1, false);
  186.         ^^^^^^^^^^^^^^^^
  187.     CommConnection cannot be resolved to a type
  188.     ----------
  189.     38. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 297)
  190.         m_commConnection = (CommConnection) m_connectionFactory.createConnection(uri, 1, false);
  191.                             ^^^^^^^^^^^^^^
  192.     CommConnection cannot be resolved to a type
  193.     ----------
  194.     39. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 297)
  195.         m_commConnection = (CommConnection) m_connectionFactory.createConnection(uri, 1, false);
  196.                                             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  197.     The type javax.microedition.io.Connection cannot be resolved. It is indirectly referenced from required .class files
  198.     ----------
  199.     40. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 297)
  200.         m_commConnection = (CommConnection) m_connectionFactory.createConnection(uri, 1, false);
  201.                                                                 ^^^^^^^^^^^^^^^^
  202.     The method createConnection(String, int, boolean) from the type ConnectionFactory refers to the missing type Connection
  203.     ----------
  204.     41. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 298)
  205.         m_commIs = m_commConnection.openInputStream();
  206.                    ^^^^^^^^^^^^^^^^
  207.     CommConnection cannot be resolved to a type
  208.     ----------
  209.     42. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 299)
  210.         m_commOs = m_commConnection.openOutputStream();
  211.                    ^^^^^^^^^^^^^^^^
  212.     CommConnection cannot be resolved to a type
  213.     ----------
  214.     43. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 349)
  215.         if (m_commConnection != null) {
  216.             ^^^^^^^^^^^^^^^^
  217.     CommConnection cannot be resolved to a type
  218.     ----------
  219.     44. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 352)
  220.         m_commConnection.close();
  221.         ^^^^^^^^^^^^^^^^
  222.     CommConnection cannot be resolved to a type
  223.     ----------
  224.     45. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 357)
  225.         m_commConnection = null;
  226.         ^^^^^^^^^^^^^^^^
  227.     CommConnection cannot be resolved to a type
  228.     ----------
  229.     46. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 402)
  230.         KuraPayload payload = new KuraPayload();
  231.         ^^^^^^^^^^^
  232.     KuraPayload cannot be resolved to a type
  233.     ----------
  234.     47. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 402)
  235.         KuraPayload payload = new KuraPayload();
  236.                                   ^^^^^^^^^^^
  237.     KuraPayload cannot be resolved to a type
  238.     ----------
  239.     48. ERROR in C:\Users\Gohm\git\kura\kura\examples\org.eclipse.kura.example.serial.publisher\src\main\java\org\eclipse\kura\example\serial\publisher\ExampleSerialPublisher.java (at line 411)
  240.         m_cloudClient.publish(topic, payload, qos, retain);
  241.         ^^^^^^^^^^^^^
  242.     CloudClient cannot be resolved to a type
  243.     ----------
  244.     48 problems (48 errors)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement