link start!
@@ -0,0 +1,11 @@
|
||||
package com.tridium.flexSerial.comm;
|
||||
|
||||
public interface TLinkedListElement {
|
||||
TLinkedListManager getLinkedListManager();
|
||||
|
||||
TLinkedListElement getNext();
|
||||
|
||||
void setLinkedListManager(TLinkedListManager tLinkedListManager);
|
||||
|
||||
void setNext(TLinkedListElement tLinkedListElement);
|
||||
}
|
||||
|
After Width: | Height: | Size: 974 B |
|
After Width: | Height: | Size: 985 B |
|
After Width: | Height: | Size: 985 B |
|
After Width: | Height: | Size: 963 B |
|
After Width: | Height: | Size: 993 B |
|
After Width: | Height: | Size: 1003 B |
|
After Width: | Height: | Size: 986 B |
|
After Width: | Height: | Size: 997 B |
@@ -0,0 +1,5 @@
|
||||
package com.tridium.flexSerial.messages;
|
||||
|
||||
public interface SerialMessageConst {
|
||||
public static final int OK = 0;
|
||||
}
|
||||