Home | History | Annotate | Download | only in stringprep
      1 //  2016 and later: Unicode, Inc. and others.
      2 // License & terms of use: http://www.unicode.org/copyright.html#License
      3 /*
      4 
      5  *******************************************************************************
      6  * Copyright (C) 2005, International Business Machines Corporation and    *
      7  * others. All Rights Reserved.                                                *
      8  *******************************************************************************
      9  */
     10 
     11 package com.ibm.icu.dev.test.stringprep;
     12 
     13 import org.junit.Ignore;
     14 import org.junit.Test;
     15 
     16 /**
     17  * @author limaoyu
     18  */
     19 public class TestInputDataStructure {
     20 
     21     // TODO(junit): not running before - added empty test to keep failures away
     22     @Ignore
     23     @Test
     24     public void dummyTest() {}
     25 
     26     private String desc = null;
     27 
     28     private String namebase = null;
     29 
     30     private String nameutf8 = null;
     31 
     32     private String namezone = null;
     33 
     34     private String failzone1 = null;
     35 
     36     private String failzone2 = null;
     37 
     38     private String token = null;
     39 
     40     private String passfail = null;
     41 
     42     private String type = null;
     43     /**
     44      * @return Returns the desc.
     45      */
     46     public String getDesc() {
     47         return desc;
     48     }
     49     /**
     50      * @param desc The desc to set.
     51      */
     52     public void setDesc(String desc) {
     53         this.desc = desc;
     54     }
     55     /**
     56      * @return Returns the failzone1.
     57      */
     58     public String getFailzone1() {
     59         return failzone1;
     60     }
     61     /**
     62      * @param failzone1 The failzone1 to set.
     63      */
     64     public void setFailzone1(String failzone1) {
     65         this.failzone1 = failzone1;
     66     }
     67     /**
     68      * @return Returns the failzone2.
     69      */
     70     public String getFailzone2() {
     71         return failzone2;
     72     }
     73     /**
     74      * @param failzone2 The failzone2 to set.
     75      */
     76     public void setFailzone2(String failzone2) {
     77         this.failzone2 = failzone2;
     78     }
     79     /**
     80      * @return Returns the namebase.
     81      */
     82     public String getNamebase() {
     83         return namebase;
     84     }
     85     /**
     86      * @param namebase The namebase to set.
     87      */
     88     public void setNamebase(String namebase) {
     89         this.namebase = namebase;
     90     }
     91     /**
     92      * @return Returns the nameutf8.
     93      */
     94     public String getNameutf8() {
     95         return nameutf8;
     96     }
     97     /**
     98      * @param nameutf8 The nameutf8 to set.
     99      */
    100     public void setNameutf8(String nameutf8) {
    101         this.nameutf8 = nameutf8;
    102     }
    103     /**
    104      * @return Returns the namezone.
    105      */
    106     public String getNamezone() {
    107         return namezone;
    108     }
    109     /**
    110      * @param namezone The namezone to set.
    111      */
    112     public void setNamezone(String namezone) {
    113         this.namezone = namezone;
    114     }
    115     /**
    116      * @return Returns the passfail.
    117      */
    118     public String getPassfail() {
    119         return passfail;
    120     }
    121     /**
    122      * @param passfail The passfail to set.
    123      */
    124     public void setPassfail(String passfail) {
    125         this.passfail = passfail;
    126     }
    127     /**
    128      * @return Returns the token.
    129      */
    130     public String getToken() {
    131         return token;
    132     }
    133     /**
    134      * @param token The token to set.
    135      */
    136     public void setToken(String token) {
    137         this.token = token;
    138     }
    139     /**
    140      * @return Returns the type.
    141      */
    142     public String getType() {
    143         return type;
    144     }
    145     /**
    146      * @param type The type to set.
    147      */
    148     public void setType(String type) {
    149         this.type = type;
    150     }
    151 }