| OLD | NEW |
| 1 package com.axml.enddec; | 1 package com.axml.enddec; |
| 2 | 2 |
| 3 import java.io.IOException; | 3 import java.io.IOException; |
| 4 import java.io.UnsupportedEncodingException; | 4 import java.io.UnsupportedEncodingException; |
| 5 import java.net.URL; | 5 import java.net.URL; |
| 6 import java.util.Vector; | 6 import java.util.Vector; |
| 7 | 7 |
| 8 | 8 |
| 9 public interface BinaryXML { | 9 public interface BinaryXML { |
| 10 /** | 10 /** |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 */ | 63 */ |
| 64 public int getActivityName(); | 64 public int getActivityName(); |
| 65 | 65 |
| 66 public int getVersion(); | 66 public int getVersion(); |
| 67 | 67 |
| 68 public int getHostUrl(); | 68 public int getHostUrl(); |
| 69 | 69 |
| 70 public int getScope(); | 70 public int getScope(); |
| 71 | 71 |
| 72 public int getMac(); | 72 public int getMac(); |
| 73 |
| 74 public int getRuntimeHost(); |
| 75 |
| 73 } | 76 } |
| OLD | NEW |