1 37 38 39 40 41 42 package com.lutris.appserver.debugger.applet.io; 43 44 import java.io.Serializable ; 45 46 47 public class ServletDescription implements Serializable { 48 49 public String name; 50 public boolean active; 51 52 53 public ServletDescription(String name, boolean active) { 54 this.name = name; 55 this.active = active; 56 } 57 58 public String toString() { 59 return name + " (" + active + ")"; 60 } 61 62 } 63 | Popular Tags |