1 28 29 package com.caucho.config.types; 30 31 import com.caucho.util.L10N; 32 33 36 public class ResourceEnvRef { 37 private static L10N L = new L10N(ResourceEnvRef.class); 38 39 private String _name; 40 private Class _type; 41 42 45 public void setDescription(String description) 46 { 47 } 48 49 52 public void setResourceEnvRefName(String name) 53 { 54 _name = name; 55 } 56 57 60 public void setResourceEnvRefType(Class type) 61 { 62 _type = type; 63 } 64 65 public String toString() 66 { 67 return "ResourceEnvRef[" + _name + "]"; 68 } 69 } 70 | Popular Tags |