Home | History | Annotate | Download | only in android
      1 package jme3test.android;
      2 
      3 /**
      4  * Name (=appClass) and Description of one demo launch inside the main apk
      5  * @author larynx
      6  *
      7  */
      8 public class DemoLaunchEntry
      9 {
     10     private String name;
     11     private String description;
     12 
     13     /**
     14      * @param name
     15      * @param description
     16      */
     17     public DemoLaunchEntry(String name, String description) {
     18         super();
     19         this.name = name;
     20         this.description = description;
     21     }
     22 
     23     public String getName() {
     24         return name;
     25     }
     26     public void setName(String name) {
     27         this.name = name;
     28     }
     29     public String getDescription() {
     30         return description;
     31     }
     32     public void setDescription(String description) {
     33         this.description = description;
     34     }
     35 
     36 
     37 
     38 }
     39