Fixing bugs on char translation; testing for arrays
[iot2.git] / config / iotpolicy / testclasspolicy.pol
index 24be14c5e1891c97baf1ab7b80bc314c6e9fd672..e2b70ccd8b0f9980ed1635572ebf29924849c27d 100644 (file)
@@ -7,6 +7,15 @@ public interface TestClassInterface {
        public double getDouble(double in);
        public boolean getBoolean(boolean in);
        public char getChar(char in);
+
+       public byte[] getByteArray(byte in[]);
+       public short[] getShortArray(short in[]);
+       public long[] getLongArray(long in[]);
+       public float[] getFloatArray(float in[]);
+       public double[] getDoubleArray(double in[]);
+       public boolean[] getBooleanArray(boolean in[]);
+       public char[] getCharArray(char in[]);
+
        public int getA();
        public void setA(int _int);
        public void setB(float _float);
@@ -24,6 +33,13 @@ public interface TestClassInterface {
                method = "getDouble(double in)";
                method = "getBoolean(boolean in)";
                method = "getChar(char in)";
+               method = "getByteArray(byte in[])";
+               method = "getShortArray(short in[])";
+               method = "getLongArray(long in[])";
+               method = "getFloatArray(float in[])";
+               method = "getDoubleArray(double in[])";
+               method = "getBooleanArray(boolean in[])";
+               method = "getCharArray(char in[])";
                method = "getA()";
                method = "setA(int _int)";
                method = "setB(float _float)";