Reverting type resolution in C++ to Java types, e.g. byte and char instead of just...
[iot2.git] / config / iotpolicy / testclasspolicy.pol
index 21eb09e7ad27f88407d6fc61df1fad12e7393cb5..24be14c5e1891c97baf1ab7b80bc314c6e9fd672 100644 (file)
@@ -1,5 +1,13 @@
 public interface TestClassInterface {
 
+       public byte getByte(byte in);
+       public short getShort(short in);
+       public long getLong(long in);
+       public float getFloat(float in);
+       public double getDouble(double in);
+       public boolean getBoolean(boolean in);
+       public char getChar(char in);
+       public int getA();
        public void setA(int _int);
        public void setB(float _float);
        public void setC(String _string);
@@ -9,6 +17,14 @@ public interface TestClassInterface {
 
        capability Setters {
                description = "All the set methods";
+               method = "getByte(byte in)";
+               method = "getShort(short in)";
+               method = "getLong(long in)";
+               method = "getFloat(float in)";
+               method = "getDouble(double in)";
+               method = "getBoolean(boolean in)";
+               method = "getChar(char in)";
+               method = "getA()";
                method = "setA(int _int)";
                method = "setB(float _float)";
                method = "setC(String _string)";